|
|
|
ทำไมข้อมูลจาก localhost ไม่แสดง ในเว็บ ค่ะ php ช่วยดูโค้ดหน่อยค่ะ |
|
|
|
|
|
|
|
ฐานข้อมูล member
Code
UserID int(3) auto_increment
Username varchar(20) tis620_thai_ci
Password varchar(20) tis620_thai_ci
Name varchar(100) tis620_thai_ci
Status varchar(20) tis620_thai_ci
โค้ด php show.php
Code (PHP)
<html>
<head>
<title>การอ่านข้อมูลจาก MySQL ลงตาราง</title>
<meta http-equiv="Content-Type" content="text/html; charset=tis-620">
</head>
<body>
<form action="" method="post" name="form" id="form">
<table width="712" border="1" cellpadding="2" cellspacing="0" bordercolor="#0066FF">
<tr bgcolor="#0066FF">
<td width="122"><div align="center"><font color="#FFFFFF" face="Tahoma, MS Sans Serif"><strong>UserID</strong></font></div></td>
<td width="92"><div align="center"><font color="#FFFFFF" face="Tahoma, MS Sans Serif"><strong>Username</strong></font></div></td>
<td width="123"><div align="center"><font color="#FFFFFF" face="Tahoma, MS Sans Serif"><strong>Password</strong></font></div></td>
<td width="136"><div align="center"><font color="#FFFFFF" face="Tahoma, MS Sans Serif"><strong>Name</strong></font></div></td>
<td width="207"><div align="center"><font color="#FFFFFF" face="Tahoma, MS Sans Serif"><strong>Status </strong></font></div></td>
</tr>
<?php
$hostname = "localhost";
$username = "root";
$password = "123456";
$dbname = "member";
$conn = mysql_connect( $hostname, $username, $password );
if ( ! $conn )
die ( "ไม่สามารถติดต่อกับ MySQL ได้" );
mysql_select_db ( $dbname, $conn )
or die ( "ไม่สามารถเลือกฐานข้อมูล " );
$sqltxt = "SELECT * FROM mydatabase";
$result = mysql_query ( $sqltxt, $conn );
while ( $rs = mysql_fetch_array ( $result ) )
{
?>
<tr>
<td><font size="2" face="Tahoma, MS Sans Serif"><?php echo $rs["UserID"] ?></font></td>
<td><font size="2" face="Tahoma, MS Sans Serif"><?php echo $rs["Username"] ?></font></td>
<td><font size="2" face="Tahoma, MS Sans Serif"><?php echo $rs["Password"] ?></font></td>
<td><font size="2" face="Tahoma, MS Sans Serif"><?php echo $rs["Name"] ?></font></td>
<td><font size="2" face="Tahoma, MS Sans Serif"><?php echo $rs["Status"] ?></font></td>
</tr>
<?php
}
mysql_close ( $conn );
?>
</table>
</form>
</body>
</html>
Tag : PHP, MySQL, Ms SQL Server 2005, Ms SQL Server 2008, CakePHP
|
|
|
|
|
|
Date :
2012-02-11 17:53:37 |
By :
darunee03 |
View :
1191 |
Reply :
7 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันมี ERROR ว่ายังไงครับผม
|
|
|
|
|
Date :
2012-02-11 18:59:56 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองนำ code ของผมไปศึกษาดูนะครับ
Code (PHP)
<html>
<head>
<title>กรณีศึกษา</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("member");
$strSQL = "SELECT * FROM status";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
?>
<table width="100%" border="1" cellpadding="0" cellspacing="0" bordercolor="#FF3366">
<tr>
<th width="50%"><div align="center" class="style1"><font size="+1">ชื่อ</font></div></th>
<th width="50%"><div align="center" class="style2"><font size="+1">ข้อมูล</font></div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><div align="center" class="style2"><font size="+1"><?=$objResult["Name"];?></font></div></td>
<td><div align="center" class="style1"><font size="+1"><?=$objResult["data"];?></font></div></td>
</tr>
<?
}
?>
</table>
<?
mysql_close($objConnect);
?>
</body>
</html>
|
|
|
|
|
Date :
2012-02-11 19:20:19 |
By :
maruey00 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ERROR
|
|
|
|
|
Date :
2012-02-11 19:53:49 |
By :
darunee03 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$dbname = "member"; แน่ใจนะ
|
|
|
|
|
Date :
2012-02-11 19:55:45 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเปลี่ยนเป็นชื่อฐานข้อมูล ดูเป็น $dbname = "mydatabas"; จากชื่อตาราง $dbname = "member";
ขึ้นว่า ERROR
|
|
|
|
|
Date :
2012-02-11 20:08:19 |
By :
darunee03 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมว่าน้องต้องไปอ่านทำความเข้าใจอะไรใหม่หน่อยครับในบทเรี่ยน โค๊ดน้องมัน select table status มันมีซะที่ไหนละ
|
|
|
|
|
Date :
2012-02-11 20:22:18 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เย้ ๆๆๆๆๆ ทำได้แล้วค่ะที่แท้ก็ง่ายนิดเดียวเส้นผมบังภูเขาแท้ ๆ ขอบคุณ ทุกคน ที่มาตอบให้นะค่ะ
|
|
|
|
|
Date :
2012-02-11 20:58:33 |
By :
darunee03 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|