Helpful Information
 
 
Category: PHP
Mysql help

Could someone show me a script that will create a mysql table with just one field that contains "TEST".
















Please :P

$sql = "CREATE TABLE `table_name` (
`test` TEXT NOT NULL
)
COMMENT = 'table comments go here';";
$result = mysql_query ($sql);

:)










privacy (GDPR)