Ich würde noch ne Funktion 'CarExists' machen.
z.b. so:
stock CarExists(i)
{
new str[50], string[2];
format(string, sizeof string, "%d" i);
format(str, sizeof str, "SELECT * FROM cars WHERE ID = '%s'", string); // tabelle noch anpassen
mysql_query(str);
mysql_store_result();
if(mysql_num_rows() != 0) return 1;
return 0;
}
So in der Art