Re: [PHP] form handling problem

2001-09-19 Thread Meir Kriheli
On Monday 17 September 2001 06:01, Nikola Veber wrote: Hi ! I have a form form target = ?php echo $PHP_SELF ?; METHOD = get Is there a way to open PHP_SELF in the same window, not in the new one ? It should be form action = ?php echo $PHP_SELF; ? METHOD = get target is used as the name of

RE: [PHP] form handling problem

2001-09-17 Thread Jon Haworth
Well, form action=?php echo $PHP_SELF; ? method=get always works fine for me. Note that you should use action instead of target, and the semicolon after $PHP_SELF should be inside the ? not outside of it... might be one of these two errors causing the problem (although I can't think why)

Re: [PHP] form handling problem

2001-09-17 Thread Alexander Deruwe
On Monday 17 September 2001 15:24, you wrote: Well, form action=?php echo $PHP_SELF; ? method=get always works fine for me. Note that you should use action instead of target, and the semicolon after $PHP_SELF should be inside the ? not outside of it... might be one of these two errors