Thanks Gottfried, but that doesn't change the response I get.

Any more suggestions.

George P in Edinburgh

PS I am hoping to come over to Frankfurt for the conference in November
(boss might pay)

----- Original Message -----
From: <[EMAIL PROTECTED]>
To: "George Pitcher" <[EMAIL PROTECTED]>
Sent: Wednesday, September 26, 2001 2:46 PM
Subject: Re: [PHP] Building Dynamic Value list using ohp


> hi!
>
> try:
>
> $query = "select HEI from heronuser"; // line 22
>
> greetinx!
> gottfried
>
> > Hi all,
> >
> > I'm having a problem with dynamically building a value list.
> >
> > My code:
> >
> > <?php
> > mysql_connect ('localhost', 'root', 'monty');
> > mysql_select_db ('Heronsql');
> >    $query = ("select HEI from heronuser"); // LINE 22 on original script
> >    $result = mysql_query($query, $mysql_link);
> >      if(mysql_num_rows($result)) {
> >        // show all HEIs as options in select form
> >        while($row = mysql_fetch_row($result))
> >        {
> >           print("<option value=\"$row[0]\">$row[0]</option>");
> >        }
> >      }
> > ?>
> >
> > But this generates:
> >
> > "Parse error:  parse error in c:\program files\apache
> > group\apache\htdocs\bizflyers\login.php on line 22"
> >
> > Any suggestions?
> >
> > Regards
> >
> > George
> >
> >
> > _________________________________________________________
> > Do You Yahoo!?
> > Get your free @yahoo.com address at http://mail.yahoo.com
> >
> >
> > --
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> > To contact the list administrators, e-mail: [EMAIL PROTECTED]
> >
>
> --
> GMX - Die Kommunikationsplattform im Internet.
> http://www.gmx.net


_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to