<?php
$namehost = 'localhost';
$userhost = 'root';
$passhost = '1234';
$conn = mysql_connect('localhost','root','1234') or die ("ไม่สามารถติดต่อฐานข้อมูล");
$sldb = mysql_select_db("slines") or die (mysql_error());
mysql_query($sldb) or die (mysql_error());
?>
err ตัวนี้ครับ
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '1' at line 1
<?php
$namehost = "localhost";
$userhost = "root";
$passhost = "1234";
$conn = mysql_connect('localhost','root','1234') or die ("ไม่สามารถติดต่อฐานข้อมูล");
$sldb = mysql_select_db("slines") or die (mysql_error());
mysql_query($sldb) or die (mysql_error());
?>
ปกติผมใช้อันนี้ครับ แต่ทำไมวันนี้มันขึ้น
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '1' at line 1
ชื่อฐานข้อมูลถูกต้องรึเปล่าครับ เพราะถ้ามันขึ้น No Select data bas แสดงว่าระบุชื่อฐานข้อมูลที่ใช้ไม่ถูกต้อง
อย่างคนก่อนหน้านี้ดันไปใช้ตารางมาเป็นฐานข้อมูล ลองดูดีๆครับ
$conn = mysql_connect('localhost','root','1234') or die ("ไม่สามารถติดต่อฐานข้อมูล");
$sldb = mysql_select_db('slines',$conn) or die (mysql_error()); # mysql_query($sldb) or die (mysql_error()); <---เอาออกครับ
?>