|
mysql_tablenameGet table name of field Warning
This extension was deprecated in PHP 5.5.0, and it was removed in PHP 7.0.0. Instead, the MySQLi or PDO_MySQL extension should be used. See also MySQL: choosing an API guide. Alternatives to this function include:
Description
stringfalse mysql_tablename(resource
$result , int $i )
Retrieves the table name from a
This function is deprecated. It is preferable to use
mysql_query to issue an SQL Parameters
Return Values
The name of the table on success or Use the mysql_tablename function to traverse this result pointer, or any function for result tables, such as mysql_fetch_array. Examples
Example #1 mysql_tablename example
Notes
See Also
|