How do you do multiple SQL statements in one mysql_query?
Questions: Say I wanted to do UPDATE table SET name = 'bob' and UPDATE table SET age = 55 WHERE name = 'jim' how do I do them in the same mysql_query()? EDIT: Since this question has a fair amount of ...