Search Results

0
votes

MYSQL ERROR

As aknock says, you are missing a ' before $tags. However, you really need to be using mysql_escape_string to protect against …
3
votes

Python and MySQL: is there an alternative to MySQLdb?

You can find pre-built binary packages for MySQLdb and its dependencies for most operating systems. …
1
vote

mysql order_by question

You might be able to do something like this: select * from articles where article_id in(98,97,96,99) order by article_id == 98 desc, article_id == 97 desc, article_id == 96 desc, ar …