Create a trace file in "/temp/client.trace" on the local machine:
<?phpmysqli_debug("d:t:o,/temp/client.trace");?>The mysqli_debug() function is used to perform debugging operations.
Note: In order to use this function, you must compile the MySQL client library to support debugging.
mysqli_debug( message);
parameter | describe |
---|---|
message | Required. A string representing the debugging operation to perform. |
Return value: | TRUE |
---|---|
PHP version: | 5+ |