php table existence check

  1. Yepkoo

    How to do MySQL Table validation with PHP?

    try { $sql_tablename=$connect_db->query("select *from tablename Where ID = '1' "); if ($sql_tablename->rowCount()>0) { $srg_tablename = $sql_tablename->fetch(PDO::FETCH_ASSOC); $read_columnname =...
Top