Add Log database

จาก Wiki2

ข้ามไปที่: นำทาง, สืบค้น
<?php
     $DBhost = "localhost";
     $DBuser = "beingpro_wd";
     $DBpass = "******";
     $DBname = "beingpro_wd";
     $table = "test";
     mysql_connect($DBhost,$DBuser,$DBpass) or die("Unable to connect to database");
     mysql_select_db("$DBname") or die("Unable to select databaser name = $DBname");
     $ctime = date('Y-m-d H:i:s');
     $sqlquery = "INSERT INTO $table (datetime) VALUES ('$ctime')";
     $results = mysql_query($sqlquery);
     mysql_close();
     echo   date('Y-m-d H:i:s');
?>
รับข้อมูลจาก "http://www.noklek.com/wiki2/index.php/Add_Log_database"
เครื่องมือส่วนตัว