File "requete_mysql_table.php"
Full Path: /home/analogde/www/FormData/Fusion/Picker02/requete_mysql_table.php
File size: 272 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
include("database.php");
$table = $_GET['table'];
$conn = db_connexion();
if( table_exists($conn, $table) == true )
{
echo "Existe dans la database";
}
else
{
echo "Nouvelle";
}
/*else
{
echo "Nouvelle ...";
} */
?>