PDA

View Full Version : Mysql help


avelonx
06-21-2002, 06:12 PM
Could someone show me a script that will create a mysql table with just one field that contains "TEST".
















Please :P

SYP}{ER
06-21-2002, 06:45 PM
$sql = "CREATE TABLE `table_name` (
`test` TEXT NOT NULL
)
COMMENT = 'table comments go here';";
$result = mysql_query ($sql);

:)