รบกวนช่วยดูโค้ดหน่อยนะค่ะ Warning: mysql_result() [function.mysql-result]: name_file not found in MySQL result index 5 in
Code (PHP)
<td align="left"><?php echo mysql_result($pro,$i,"name_file "); ?></td>
ช่องว่างรึปล่าว
<td align="left"><?php echo mysql_result($pro,$i,"name_file"); ?></td>
Date :
2009-11-10 10:06:31
By :
Sek-Artdrinker
ขอบคุณมากเลยพี่ แค่จุดเล็ก แต่ยิ่งใหญ่ ขอบคุณนะค่ะ
Date :
2009-11-10 10:17:37
By :
kabton_hok
พี่ค่ะถามอีกรอบ ต่อจากเมื่อกี้อะค่ะ หนูแต่ทดสอบลองแค่ ให้โชว์อันเดียว ถ้าหนูต้องการให้แสดงทั้งหมด หนูต้องใส่อะไรตรงไหนเหรอค่ะ จาก $pro= mysql_query("select * from tb_upload where uses ='5' ");
โค้ดตรงนี้หนูให้แสดงแค่อันเดียวอะค่ะ
แล้วถ้าหนูตรงการให้แสดงทั้งหมดอะค่ะ
Date :
2009-11-10 10:26:18
By :
kabton_hok
อยากให้โชว์ทั้งหมด ก็ไม่ต้องมี where ครับ
Date :
2009-11-10 10:42:34
By :
deawx
Code (PHP)
<?php
$pro= mysql_query("select * from tb_upload ");
?>
<table>
<?php while($res = mysql_fetch_array($pro)) { ?>
<tr><td><?php echo $res[name_file]; ?></td></tr>
<?php } ?>
</table>
Date :
2009-11-10 10:50:22
By :
aknueng
ขอบคุณนะค่ะสำหรับคำแนะนำทุกคำแนะนำ
Date :
2009-11-10 11:08:01
By :
kabton_hok
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in C:\AppServ\www\alumni\home\user_login.php on line 8
<?php
session_start();
if($_POST) {
$login = $_POST['login'];
$pswd = $_POST['pswd'];
$sql = "SELECT * FROM member WHERE login = '$login' AND password = '$pswd';";
$result = mysql_query($sql);
if(mysql_num_rows($result) != 1) {
echo "<font size=5 color=red>ล็อกอินหรือรหัสผ่านไม่ถูกต้อง<p />
<a href=\"javascript: history.back()\">ย้อนกลับไปแก้ไข</a></font>";
}
else {
$_SESSION['user_name'] = mysql_result($result, 0, "user_name");
$_SESSION['user_id'] = mysql_result($result, 0, "user_id");
header("Refresh: 3; url=headerwebboard.php");
echo "ท่านเข้าสู่ระบบแล้ว จะกลับสู่หน้าหลักใน 3 วินาที";
}
exit;
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>Auction: User Login</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<p />
<h3 align="center">สมาชิกเข้าสู่ระบบ</h3>
<form id="form1" name="form1" method="post" action="<?php echo $_SERVER['file:///C|/AppServ/www/alumni/home/PHP_SELF']; ?>">
<table border="0" cellspacing="3" cellpadding="0" align="center">
<tr>
<td>ล็อกอิน:</td>
<td><label>
<input name="login" type="text" id="login" />
</label></td>
</tr>
<tr>
<td>รหัสผ่าน:</td>
<td><label>
<input name="pswd" type="password" id="pswd" />
</label></td>
</tr>
<tr>
<td> </td>
<td><label>
<input type="submit" name="Submit" value="เข้าสู่ระบบ" />
</label></td>
</tr>
</table>
</form>
</body>
</html>
Date :
2010-09-15 10:11:42
By :
oui
$sql = "SELECT * FROM member WHERE login = '$login' AND password = '$pswd';";
แก้เป็น
$sql = "SELECT * FROM member WHERE login = '$login' AND password = '$pswd' ";
Date :
2010-09-15 10:41:12
By :
heng
Warning: mysql_result(): supplied argument is not a valid MySQL result resource in /var/www/html/wattanapat/read_image2.php on line 9
Warning: mysql_result(): supplied argument is not a valid MySQL result resource in /var/www/html/wattanapat/read_image2.php on line 10
มันขึ้น error แบบนี้อะค่ะ รบกวนถามหน่อยค่ะ ว่าเขียนโคด้ผิดตรงไหนอะค่ะ
ปัญหาก็คือเวลาแสดงข้อมูลกับ IE ก็จะแสดงข้อมูลได้ตามปกติ แต่ถ้าเมื่อไรที่เปิดกับ Firefox มันจะไม่สามารถ แสดงข้อมูลมูลได้มันจะขึ้นเป็นตัวอักษรที่อ่านไม่ออกอะค่ะ
รบกวนหน่อยค่ะ
1.<?php
2.@mysql_connect("localhost", "root", "password") or die(mysql_error());
3.mysql_select_db("web_wpt1");
4.
5.$employee_id = $_GET['employee_id'];
6.$sql = "SELECT type, content FROM image_history WHERE employee_id = $employee_id;";
7.$result = mysql_query($sql);
8.
9.$type = mysql_result($result, 0, "type");
10.$content = mysql_result($result, 0, "content");
11.
12.
13.echo $content;
14.?>
15.<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-16.transitional.dtd">
17.<html xmlns="http://www.w3.org/1999/xhtml">
18.<head>
19.<meta http-equiv = "Content-Type" content = "text/html; charset = windows-874"/>
20.<meta http-equiv="Content-Type" content="text/html; charset=TIS-620" >
22.
23.<title>ประวัติ</title>
24.
25.</head>
26.
27.<body>
28.<?=$emp_data[type]; ?><br />
29.<?=$emp_data[content]; ?>
30.</body>
31.</html>
Date :
2011-01-31 10:56:08
By :
june
Load balance : Server 01