>     printf ("<OPTION VALUE=\"%s\">%s</OPTION>", $row['client'],
$row['client']);
>
>      print "<OPTION
VALUE=\"".$row['client']."\">".$row['client']."</OPTION>";


I've always found it easier NOT to use double quotes unless I have to;
avoids all those slashes and makes things easier to follow.  Try:

print '<OPTION VALUE="' . $row['client'] . '">' . $row['client'] .
'</OPTION>';


- Darryl

 ----------------------------------------------------------------------
  Darryl Friesen, B.Sc., Programmer/Analyst    [EMAIL PROTECTED]
  Education & Research Technology Services,     http://gollum.usask.ca/
  Department of Computing Services,
  University of Saskatchewan
 ----------------------------------------------------------------------
  "Go not to the Elves for counsel, for they will say both no and yes"



-- 
PHP Database 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