does anyone know where i can find a complete list of mysql commands. Im in the proccess of writing a live mysql database interaction for web use. and right now i need to store all mysql commands to an array and have the php script read the array and modify the words as it sees them.
so if i typed in
UPDATE TABLE.....
the script would read up until the first white space. take the string of characters that it had been reading up to that point, check it against the array, and if it found it. it would read the number associated with the array value and then check that number against another array where the number would contain formatting options.
i need it to do this. because when you enter the mysql_query it prints it out and says, you are about to run this query :(query here) and i want to have clean formatting of the text.