24.10.2016, 17:44
Add what columns you want to retrieve in the query, for example:
and if there are rows, use cache_get_field_content/cache_get_field_content_int functions to retrieve the data.
Just a side-note for sscanf. "s" specifier needs a size as "s[128]" but for single strings, use isnull + params.
Код:
SELECT owner,modelid FROM vehicles WHERE plate='%e' LIMIT 1
Just a side-note for sscanf. "s" specifier needs a size as "s[128]" but for single strings, use isnull + params.

