is there some sort of simple tool that can do this:
i insert a few variables
testa
testb
testc
and the tool auto generates this query:
$query=mysql_query("insert into whatever (testa, testb testc) values ('$testa','$testb','$testc')");
which i can simply cut and paste into my php script..
Its a bitch creating those queries with tables over
30 fields...
Otherwise ill build it myself but maybe......???
