Quote:
Originally Posted by acidburn0520
Basically just use:
PHP Code:
$db->query_read("SELECT * FROM table_name WHERE clause = condition");
PHP Code:
$db->query("DELETE FROM table_name WHERE clause = condition");
PHP Code:
$db->query("UPDATE table_name SET column = 'value' WHERE clause = condition");
PHP Code:
$db->query("INSERT INTO table_name (column, column, column) VALUES (bla, bla, bla)");
That's pretty much it. Use query_first to generate arrays.
|
Thanks!

I've played around with this a little.. but now I can't seem to display the results. I'm trying to use some custom templates. Are there examples on how to do this? It would be nice if there was a way to debug variables or to see what variables were currently loaded by the system too. I've tried to study code from other mods and they use system arrays and variables that I don't have a clue what they are for or if I should be using them in my code.
Any and all help on this will be deeply appreciated, :banana:
Thanks again!
Jim