Skip to content

Instantly share code, notes, and snippets.

View toby78's full-sized avatar

Tobias Marx toby78

  • Munich
View GitHub Profile
<?php
require_once("config.php");
mysql_connect($dbhost, $dbuname, $dbpass);
@mysql_select_db($dbname) or die ("???");
$result=mysql_query("SELECT table_schema, table_name FROM INFORMATION_SCHEMA.TABLES
WHERE engine = 'MyISAM' and table_schema not in ('mysql','information_schema')");