| By: Mankiy Date: 2003-07-11 Time: 23:34 | problem with forms...Im having a problem with forms and the PHP.... its not sending it to the PHP i dont think....... heres the PHP code: 
 and the html code: 
 do you see any probs there? | ||
| By: Skrol29 Date: 2003-07-15 Time: 14:06 | Re: problem with forms...Hello Mankiy, Here what I see: 1/ some of your items of arrays are not string delimited. $topic = $HTTP_POST_VARS[topic]; should be $topic = $HTTP_POST_VARS['topic']; 2/ $fid = $_GET[f]; This line won't work because 'f' is not given by GET a method. | ||
| By: Mankiy Date: 2003-07-15 Time: 17:38 | Re: problem with forms...f is taken from the URL ex: http://localhost/forum1/post.php?f=1 | ||
| By: Skrol29 Date: 2003-07-16 Time: 10:03 | Re: problem with forms...But it is not in the definition of the form : 
 | ||
| By: Mankiy Date: 2003-07-19 Time: 21:23 | Re: problem with forms...It still isnt working, i changed these: $HTTP_POST_VARS['string'] and i changed $_GET[f] to $_POST[f] and it still wont work for me... | ||
| By: robee Date: 2003-08-18 Time: 11:47 | Re: problem with forms...geh!the date was last july 19..but anyways, what i've noticed , in your html :  
 i think u forgot to put a value="[var.username]" in ur forms.. |