I have a couple of things in my DB that needs to be ordered by Id #
When I use all this PHP code to insert some info into the base, it isn't ordered by how I want it. How would I order it right?
I tried:
@ ("INSERT into crewInfo (id, ppic, name, style, why, how, other, email, sn, shouts, shoutsS, shortname) VALUES (NULL, '$Cppic', '$Cname', '$Cstyle', '$Cwhy', '$Chow', '$Cother', '$Cemail', '$Csn', '$Cshouts', '$CshoutsS', '$Cshortname') ORDER BY id") or die("Invalid query");
but it failed giving an "Invalid query"
any help?