|
mysqli::real_querymysqli_real_queryExecute an SQL query DescriptionObject-oriented style
public bool mysqli::real_query(string
$query )Procedural style bool mysqli_real_query(mysqli
$mysql , string $query )Executes a single query against the database whose result can then be retrieved or stored using the mysqli_store_result or mysqli_use_result functions. Warning
Security warning: SQL injectionIf the query contains any variable input then parameterized prepared statements should be used instead. Alternatively, the data must be properly formatted and all strings must be escaped using the mysqli_real_escape_string function. In order to determine if a given query should return a result set or not, see mysqli_field_count. Parameters
Return Values
Returns Errors/Exceptions
If mysqli error reporting is enabled ( See Also
|