|
|
|
ช่วยทีครับผมอยากให้โชว์ข้อมูลจากตารางในฐานข้อมูลแถวที่2 เขียนเป็น php น่ะคับ เขียนยังไงคับ |
|
|
|
|
|
|
|
ไฟล์ config.inc.php
Code (PHP)
<?php
$host="localhost";
$user="root";
$pass="1234";
$db="egat";
$con = mysql_connect($host,$user,$pass) or die ("ติดต่อ Database Server ไม่ได้");
mysql_select_db($db) or die ("เลือกใช้ฐานข้อมูลไม่ได้");
mysql_query("SET character_set_results=tis620");
mysql_query("SET character_set_client='tis620'");
mysql_query("SET character_set_connection='tis620'");
mysql_query("collation_connection = tis620_thai_ci");
mysql_query("collation_database = tis620_thai_ci");
mysql_query("collation_server = tis620_thai_ci");
?>
ไฟล์ show.php
Code (PHP)
<?php
include("config.inc.php");
$Sql="select ชื่อแถวที่2 from ชื่อตาราง";
$dbquery=mysql_db_query($db,$Sql); // หาจำนวนเรกคอร์ดข้อมูลในตาราง
$num_rows=mysql_num_rows($dbquery); // เริ่มวนรอบแสดงข้อมูล
$i=1;
while($i <= $num_rows)
{
$rs=mysql_fetch_array($dbquery);
$ตัวแปรใหม่ = $rs[ชื่อแถวที่2];
echo $ตัวแปรใหม่;
?>
|
|
|
|
|
Date :
2009-03-30 08:31:29 |
By :
mai_sao |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
โทษที ไฟล์ config.inc.php ยังเป็นรายละเอียดของเราอยู่
Code (PHP)
<?php
$host="localhost";
$user="root";
$pass="รหัสผ่านเข้าสู่ฐานข้อมูล";
$db="ชื่อฐานข้อมูล";
$con = mysql_connect($host,$user,$pass) or die ("ติดต่อ Database Server ไม่ได้");
mysql_select_db($db) or die ("เลือกใช้ฐานข้อมูลไม่ได้");
mysql_query("SET character_set_results=tis620");
mysql_query("SET character_set_client='tis620'");
mysql_query("SET character_set_connection='tis620'");
mysql_query("collation_connection = tis620_thai_ci");
mysql_query("collation_database = tis620_thai_ci");
mysql_query("collation_server = tis620_thai_ci");
?>
แบบนี้ไหมที่ถามมา
|
|
|
|
|
Date :
2009-03-30 08:36:56 |
By :
mai_sao |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลืมอีกแล้วต้องมี $i++; } ต่อท้าย echo $ตัวแปรใหม่; ด้วย
|
|
|
|
|
Date :
2009-03-30 08:39:51 |
By :
mai_sao |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากๆครับ ที่ให้ความช่วยเหลือ
|
|
|
|
|
Date :
2009-03-31 06:15:37 |
By :
keojo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|