[PHP] Re: Parse error not understood

2003-08-14 Thread Ivo Fokkema
> //If "Delete User" is selected-- > if ( $_REQUEST['useroption'] == 'delete') > { > //First, check that the user already exists > $query = "select count(*) from pbpc_client where username = '" . > $_REQUEST['usernamebox'] . "';"; > $result = mysql_query($query); > if(!$result) > { > echo '

[PHP] Re: Parse error not understood

2003-08-14 Thread Chris Blake
Holy schmoley...something so small.I must get off this green tea, all this good health stuff is causing havoc in my brain... Thanks Fokkema, and Johnfor pointing out an obvious error... Regards On Wed, 2003-08-06 at 14:48, Fokkema, I.F.A.C. (HKG) wrote: > > //If "Delete User" is selecte

Re: [PHP] Re: Parse error not understood

2003-08-08 Thread Ivo Fokkema
"Miles Thompson" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Yes, I'm top posting, pls forgive. > > This is a situation where an editor which has built-in brace matching > really helps - if in the midst of "looking" one remembers to use it. > > Another tip, although it probably wo

Re: [PHP] Re: Parse error not understood

2003-08-06 Thread Miles Thompson
Yes, I'm top posting, pls forgive. This is a situation where an editor which has built-in brace matching really helps - if in the midst of "looking" one remembers to use it. Another tip, although it probably wouldn't help here: Save the code with a .phps extension and look at it in the browser.