I created a db from a sql load...project, id, and server
id is primary key, auto increment
I added about 400 records to it via php pages...all is cool.
when I run a:
$sql = "select * from PROJECTS where Server = '$SYSTEM' ";
it always comes back with an error..couldn't execute query (my die message).
but if I use either Project or ID in the where part...it works fine.
in mysql> I can do the queries fine...with wildcards and everything.
I can also send sql commands from dbtools, etc. just doesn't work with Server in PHP.
HELP!!!!