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 John....for 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 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 'Cannot run query.';
> > exit();
> > }
> >
> > $count = mysql_result($result, 0, 0);
> > if($count==0)
> > {
> > //User does not exist in the database
> > header('location: user_not_exists.php');
> > exit();
> >
> > header('location:del_new_user.php');
> > exit();
> > }
> > //header('location: content.php');
> > ?>
> >
> > No matter which option I select I get the following output :
> > ------
> > Parse error: parse error, unexpected $ in
> > /var/www/html/Sessions/userman.php on line 83
> >
> > Line 83 is '?>'......
> You missed a '}' at lines :
> 
> 
> if($count==0)
> {
> //User does not exist in the database
> header('location: user_not_exists.php');
> exit();
> 
> Add a '}' after this, and your problem is fixed!
> 
> 
> --
> Ivo Fokkema
> PHP & MySQL programmer
> Leiden University Medical Centre
> Netherlands
-- 
Chris Blake
Office : (011) 782-0840
Cell : 083 985 0379

"None of our men are "experts."  We have most unfortunately found it
necessary 
to get rid of a man as soon as he thinks himself an expert -- because no
one 
ever considers himself expert if he really knows his job.  A man who
knows a 
job sees so much more to be done than he has done, that he is always
pressing 
forward and never gives up an instant of thought to how good and how
efficient 
he is.  Thinking always ahead, thinking always of trying to do more,
brings a 
state of mind in which nothing is impossible. The moment one gets into
the
"expert" state of mind a great number of things become impossible."
-- From Henry Ford Sr., "My Life and Work," p. 86 (1922):


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to