Topic awaiting preservation: just wondering... (Page 1 of 1) |
|
---|---|
Maniac (V) Inmate From: Switzerland |
posted 09-24-2002 07:19
hmmm even it is too late for me (didn't got code: <form action="addmsg.php?txt_nick=$txt_nick&txt_web=$txt_web" method="post" form name="submit">
code: <?php
|
Maniac (V) Mad Scientist From: 100101010011 <-- right about here |
posted 09-24-2002 08:16
Don't know how PHP treats it but you are submitting the form via a POST method but by putting info in the query string which is the GET method that may be hosing it. Try either using get or set the variables in hidden fields: code: <input type="hidden" name="txt_nick" value="$txt_nick">
|
Maniac (V) Inmate From: Switzerland |
posted 09-25-2002 20:56
solution: changed the value of the |