Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
Massage_2000
:
check.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php include('database.php'); include('fonctions.php'); DB_connexion(); // SHOW TABLES LIKE $table_array // $sql = "SHOW TABLES LIKE " .$dbname"; // $result = mysql_query($sql); $sql = "select 1 from customers"; $exists = mysql_query($sql); if($exists !== FALSE) { echo("This table exists"); echo "<br>"; } else { echo("This table doesn't exist"); echo "<br>"; } $sql = "select * from reservation2017"; $exists = mysql_query($sql); if($exists !== FALSE) { echo("This table exists"); echo "<br>"; } else { echo("This table doesn't exist"); echo "<br>"; } ?>