Page 2 of 2

Posted: Sat May 13, 2006 2:41 pm
by Peuplarchie
if I use Post only space is write
if I use Get it write what i've put in the form action command

Posted: Sat May 13, 2006 2:42 pm
by Peuplarchie
im on php4 windows 2003 server.

Posted: Sat May 13, 2006 2:53 pm
by andym01480
The problem is that your form is using 'codesource'

Code: Select all

<textarea cols="80" rows="20" wrap="off" name="codesource" >
and the php is using 'codes'

Code: Select all

$new_line = "\r". $_GET['codes']."\n\r";
The PHP should be

Code: Select all

$new_line = "\r". $_POST['codesource']."\n\r";
to match the form and look for it "posted" from the form

Posted: Sat May 13, 2006 3:02 pm
by Peuplarchie
There we go !!!!!

hahahahaha

Thanks finaly solve, the only thing I didnt try like usual ! :oops:

Posted: Sat May 13, 2006 3:36 pm
by aerodromoi
Peuplarchie wrote:There we go !!!!!

hahahahaha

Thanks finaly solve, the only thing I didnt try like usual ! :oops:
Only change one thing at a time - you went all over the place (coding,codes, codesource,GET,POST). :roll:

As long as it works now...
aerodromoi