Re: [PHP] Get when it should be Post

2001-08-01 Thread Christian
which translates to Rasmus Lerdorf wrote: > Then you have some silly mistake somewhere. Show us the URL. > > -Rasmus > > >>Thanx, tried capitals but it still submits via GET :-/ >> >>Rasmus Lerdorf wrote: >> >> I've been having a problem of late that some of my forms which are

Re: [PHP] Get when it should be Post

2001-08-01 Thread CC Zona
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Christian) wrote: Are you quoting the attribute in the real markup (method="POST"), or is like you show below? (It might help to throw the whole page at an html validator either way,'cuz even if that line is syntactically valid, there may be

Re: [PHP] Get when it should be Post

2001-08-01 Thread Rasmus Lerdorf
Then you have some silly mistake somewhere. Show us the URL. -Rasmus > Thanx, tried capitals but it still submits via GET :-/ > > Rasmus Lerdorf wrote: > > >>I've been having a problem of late that some of my forms > >>which are set to method=post are not submitting by post by via get. > >> > >

Re: [PHP] Get when it should be Post

2001-08-01 Thread Christian
Thanx, tried capitals but it still submits via GET :-/ Rasmus Lerdorf wrote: >>I've been having a problem of late that some of my forms >>which are set to method=post are not submitting by post by via get. >> > > I have seen browsers that only do post when it sees, method=POST > ie. "POST" vs.

Re: [PHP] Get when it should be Post

2001-08-01 Thread Rasmus Lerdorf
> I've been having a problem of late that some of my forms > which are set to method=post are not submitting by post by via get. I have seen browsers that only do post when it sees, method=POST ie. "POST" vs. "post" -Rasmus -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-m

[PHP] Get when it should be Post

2001-08-01 Thread Christian
Hi PHPers, I've been having a problem of late that some of my forms which are set to method=post are not submitting by post by via get. $REQUEST_METHOD reads get $HTTP_POST_VARS is not set but $HTTP_GET_VARS is .. What could be causing this ?? Thanx, Christian -- PHP General Mailing List (ht