newbie help-deleta table

admin

Administrator
Staff member
hi, everyone

i created a table using
<?php

$connection = mysql_connect ("localhost", "name", "pass");
if ($connection == false){
echo mysql_errno().": ".mysql_error()."<BR>";
exit;
}

$query = "create table email_info " .
"(fullname varchar(255), email_address varchar(255))";
$result = mysql_db_query ("name", $query);

if ($result)
echo "Table 'email_info' was successfully created!";
else
echo mysql_errno().": ".mysql_error()."<BR>";

mysql_close ();


?>

i am wondering how to delete that table. Pleae tell me how. Thank You!
 
Back
Top