From wiki.swiftlytilting.com
WinBinder Manual/db delete table
Deletes a table in the current database.
Syntax
bool db_delete_table(string $tablename)
Arguments
- tablename is the name of the table that will be deleted. If it is null, the function deletes the last accessed table.
Result
The function returns TRUE if successful or FALSE otherwise
Example
// Delete table
$result = db_delete_table("mytable");
See also