Web Analytics Made Easy -
StatCounter Mysql help - CodingForum

Announcement

Collapse
No announcement yet.

Mysql help

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Mysql help

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
















    Please :P

  • #2
    PHP Code:
    $sql "CREATE TABLE `table_name` (
    `test` TEXT NOT NULL
    )
    COMMENT = 'table comments go here';"
    ;
    $result mysql_query ($sql); 
    Offtone.com - In the works...

    Comment

    Working...
    X