Jump to content

multiple


kv79

Recommended Posts

Hi all , I am a little confused about this mysql_query() sends an unique query (multiple queries are not supported) to the currently active database on the server that's associated with the specified link_identifier .So when writer said that "multiple queries are not supported"Did he mean in one php file or in currently active database I hope that you understand what i mean to said by this .

Link to comment
Share on other sites

It means you cannot write multiple queries in one mysql_query() call. E.g. you could not do this (as you could on, say, the SQL command line).

mysql_query("UPDATE table SET column = 'value'; SELECT * FROM table");

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...