Rate this script:  I Love it  /   I Hate it

Install MySQL table with PHP.


Code


<?php

$table_def  = "id INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,";
$table_def .= "student_id INT(11) NOT NULL,";
$table_def .= "f_name TINYTEXT NOT NULL,";
$table_def .= "l_name TINYTEXT NOT NULL,";
$table_def .= "supervisor TINYTEXT NOT NULL,";
$table_def .= "building TINYTEXT NOT NULL,";
$table_def .= "email TINYTEXT NOT NULL,";
$table_def .= "score SMALLINT(6) NULL,";
$table_def .= "stamp DATETIME NOT NULL,";
$table_def .= "UNIQUE KEY id (id)";

if (!@mysql_query ("CREATE TABLE $tablename ($table_def)")) {
        echo "The database table, '$tablename', could not be created.";
} else {
        echo "Successfully created the '$tablename' table.";
}
?>
 

 

 
Install MySQL table with PHP. scripts | Install MySQL table with PHP. snippet | Install MySQL table with PHP. example | Install MySQL table with PHP. tutorial | Install MySQL table with PHP. code