PHP Code:
public function AddData( data )
{
temp.sql = "INSERT INTO immolate_items (name, display_name, power) VALUES(`" @ data[0] @ "`, `" @ data[1] @ "`, `" @ data[2] @ "`)";
sqlexecute( temp.sql, NULL );
}
seems to be throwing this error:
SQL Error: no such column: testsword
Query: INSERT INTO immolate_items (name, display_name, power) VALUES(`testsword`, `Testing Sword`, `3`)
Any ideas on what I'm actually doing wrong?