ดูหน่อยคะ เกี่ยวกับ checkbox คะ ต้องทำยังไง ท่านผู้รู้ช่วยหน่อยคะ
ไม่มีใครช่วยเลย อยากจะร้องไห้
Date :
2010-11-18 20:58:29
By :
สงสารหน่อย
คือว่าตอนนี้กำลังง อยู๋คะ โค๊ดอีกอันหนึ่งทำได้ แต่โค๊ดนี้ทำไม่ได้ ช่วยหน่อยนะคะ ไม่ใช่ดังตัวอย่างนะคะ ตัวอย่างเข้าคลิกข้างหลัง ถ้าช่วยจะเป็นกรุณาอย่างมากคะ
Date :
2010-11-18 21:14:08
By :
สงสารหน่อย
งะ ก็เลื่อนมันไปไว้ด้านหน้าซิครับ ไว้ก่อนหน้า date อะ
Date :
2010-11-18 21:25:29
By :
PlaKriM
พี่หนูเริ่มงง แล้ว ไม่เห็ฯขึ้นเลย แถมขึ้นมาแบบนี้อีก ไม่มีผลอะไรเลย
Warning: mysql_close(): supplied argument is not a valid MySQL-Link resource in C:\AppServ\www\hbo\listcal.php on line 64
Date :
2010-11-18 21:40:24
By :
สงสารหน่อย
ไม่มีใครช่วยจะร้องไห้
Date :
2010-11-19 12:43:44
By :
สส
เอาโค๊ดที่ทำ ลงให้ดู ทังหมดเลยครับ มัน Error line 64 อ่า
Date :
2010-11-19 12:50:55
By :
Kotakin
นี้คะโค๊ด
<!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>ข้อมูลรายการอาหาร</title>
<style type="text/css">
<!--
.style1 {
color: #FF0000;
font-weight: bold;
}
body {
background-image: url(image/background.gif);
}
-->
</style>
</head>
<body>
<script language="JavaScript">
function onDelete()
{
if(confirm('Do you want to delete ?')==true)
{
return true;
}
else
{
return false;
}
}
</script>
<p align="center"><strong>ข้อมูลรายการอาหาร</strong>
<form id="form1" name="form1" method="post" action="" OnSubmit="return onDelete();">
<p align="center">
<table width="541" height="41" border="1" align="center">
<tr bordercolor="#FF0000" bgcolor="#00FF00">
<td font face="Angsana New" width="50"><div align="center"><strong>ลำดับ</strong></div></td>
<td font face="Angsana New" width="255"><div align="center"><strong>รายการอาหาร</strong></div></td>
<td font face="Angsana New" width="120"><div align="center"><strong>แคลอรี</strong></div></td>
<td font face="Angsana New" width="120"><div align="center"><strong>ความต้องการ</strong></div></td>
</tr>
<?php
include("connect4.php");
$sql="select*from tbfood order by id";
$result = mysql_db_query($dbname,$sql);
while($record=mysql_fetch_array($result)){
echo "
<tr>
<td>$record[id]</td>
<td>$record[Name]</td>
<td>$record[Calorie]</td>
<td>
<a href = \"Dellist.php?id=$record[id]\"
onclick=\"return confirm('ต้องการลบ $record[Name] จริงหรือไม่') \">ลบ</a> </td> </tr>";
}
?>
<?
mysql_close($objConnect);
?>
<input type="submit" name="delete" value="Delete">
</table>
</form>
</p>
<p align="center" class="style1">*ต้องการเพิ่มรายการอาหาร <a href="flist.php">คลิกที่นี้ </a></p>
<p align="center"><a href="adin.php"><strong>กลับ</strong></a></p>
</body>
</html>
Date :
2010-11-19 13:45:20
By :
สงสารหน่อย
include("connect4.php");
$sql="select*from tbfood order by id";
$result = mysql_db_query($dbname,$sql);
while($record=mysql_fetch_array($result)){
echo "
<tr>
<td> ใส่ checkbox ตรงนี้ </td>
<td>$record[id]</td>
<td>$record[Name]</td>
<td>$record[Calorie]</td>
<td>
<a href = \"Dellist.php?id=$record[id]\"
onclick=\"return confirm('ต้องการลบ $record[Name] จริงหรือไม่') \">ลบ</a> </td> </tr>";
}
แล้วเดียวก็จะติดอีก ว่าทำไม ไม่ลบ ให้
ลำบากน้อ
ประวัติการแก้ไข 2010-11-19 16:02:22
Date :
2010-11-19 15:59:07
By :
rakket
มันขึ้นแบบนี้อะ
Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in C:\AppServ\www\hbo\listcal.php on line 53
นี้โค๊ด
<!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>ข้อมูลรายการอาหาร</title>
<style type="text/css">
<!--
.style1 {
color: #FF0000;
font-weight: bold;
}
body {
background-image: url(image/background.gif);
}
-->
</style>
</head>
<body>
<script language="JavaScript">
function onDelete()
{
if(confirm('Do you want to delete ?')==true)
{
return true;
}
else
{
return false;
}
}
</script>
<p align="center"><strong>ข้อมูลรายการอาหาร</strong>
<form id="form1" name="form1" method="post" action="" OnSubmit="return onDelete();">
<p align="center">
<table width="541" height="41" border="1" align="center">
<tr bordercolor="#FF0000" bgcolor="#00FF00">
<td font face="Angsana New" width="50"><div align="center"><strong>ลำดับ</strong></div></td>
<td font face="Angsana New" width="255"><div align="center"><strong>รายการอาหาร</strong></div></td>
<td font face="Angsana New" width="120"><div align="center"><strong>แคลอรี</strong></div></td>
<td font face="Angsana New" width="120"><div align="center"><strong>ความต้องการ</strong></div></td>
</tr>
<?php
include("connect4.php");
$sql="select*from tbfood order by id";
$result = mysql_db_query($dbname,$sql);
while($record=mysql_fetch_array($result)){
echo "
<tr>
<td> <input name="form1" type="checkbox" value="" /></td>
<td>$record[id]</td>
<td>$record[Name]</td>
<td>$record[Calorie]</td>
<td>
<a href = \"Dellist.php?id=$record[id]\"
onclick=\"return confirm('ต้องการลบ $record[Name] จริงหรือไม่') \">ลบ</a> </td> </tr>";
}
?>
<?
mysql_close($record[Name]);
?>
<input type="submit" name="delete" value="Delete">
</table>
</form>
</p>
<p align="center" class="style1">*ต้องการเพิ่มรายการอาหาร <a href="flist.php">คลิกที่นี้ </a></p>
<p align="center"><a href="adin.php"><strong>กลับ</strong></a></p>
</body>
</html>
Date :
2010-11-19 22:05:50
By :
สงสารหน่อย
ช่วยหน่อยคะ พี่ๆๆท่านหลายๆ จะร้องไห็แล้ว
Date :
2010-11-20 21:03:58
By :
สงสารหน่อย
ลองดูนะครับ น่าจะหายนะผมไม่ได้ลองรันดู คิดสดลงวินใหม่ไม่ได้ลงโปรแกรม ลองดูนะครับเออเร่ออะไรบอกใหม่นะครับ
Code (PHP)
<!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>ข้อมูลรายการอาหาร</title>
<style type="text/css">
<!--
.style1 {
color: #FF0000;
font-weight: bold;
}
body {
background-image: url(image/background.gif);
}
-->
</style>
</head>
<body>
<script language="JavaScript">
function onDelete()
{
if(confirm('Do you want to delete ?')==true)
{
return true;
}
else
{
return false;
}
}
</script>
<p align="center"><strong>ข้อมูลรายการอาหาร</strong>
<form id="form1" name="form1" method="post" action="" OnSubmit="return onDelete();">
<p align="center">
<table width="541" height="41" border="1" align="center">
<tr bordercolor="#FF0000" bgcolor="#00FF00">
<td font face="Angsana New" width="50"><div align="center"><strong>ความต้องการ</strong></div></td>
<td font face="Angsana New" width="50"><div align="center"><strong>ลำดับ</strong></div></td>
<td font face="Angsana New" width="255"><div align="center"><strong>รายการอาหาร</strong></div></td>
<td font face="Angsana New" width="120"><div align="center"><strong>แคลอรี</strong></div></td>
<td font face="Angsana New" width="120"><div align="center"><strong>ลบ</strong></div></td>
</tr>
<tr>
<?php
include("connect4.php");
$sql="select * from tbfood order by id asc ";
$result = mysql_db_query($dbname,$sql);//$dbname คือ ชื่อฐานข้อมูลที่ใช้ถ้าไม่ได้ประกาศตัวแปรไว้ให้เอาชื่อฐานข้อมูลมาใส่
while($record=mysql_fetch_array($result)){
?>
<td> <input name="form1" type="checkbox" value="" /></td>
<?
echo "
<td>$record[id]</td>
<td>$record[Name]</td>
<td>$record[Calorie]</td>
<td><a href = \"Dellist.php?id=$record[id]\"onclick=\"return confirm('ต้องการลบ $record[Name] จริงหรือไม่') \">ลบ</a> </td> </tr>";
}
?>
<?/*
mysql_close($record[Name]);*/
?>
<input type="submit" name="delete" value="Delete">
</table>
</form>
</p>
<p align="center" class="style1">*ต้องการเพิ่มรายการอาหาร <a href="flist.php">คลิกที่นี้ </a></p>
<p align="center"><a href="adin.php"><strong>กลับ</strong></a></p>
</body>
</html>
เเก้ทีละนิด ใกล้เคียงที่สุดเเล้วครับ ผลน่าจะออกนะไงผิดตรงไหนบอกได้ครับ
ประวัติการแก้ไข 2010-11-21 01:11:05 2010-11-21 01:44:22 2010-11-21 01:53:49 2010-11-21 01:59:01 2010-11-21 02:00:40
Date :
2010-11-21 01:10:26
By :
Kotakin
มันออกมาเป็นแบบนี้คะ
Date :
2010-11-21 22:55:56
By :
สส
ช่ายคุณจะปรับเเต่งเอาไรขึ้นก่อนได้เลยครับ ตามชอบเลยผมเเค่แก้ให้มันไม่ เออเร่อเท่านั้นที่เหลือคุณปรับเองนะครับ
ประวัติการแก้ไข 2010-11-22 00:23:11
Date :
2010-11-22 00:21:03
By :
Kotakin
ขอบคุณคุณKotakin มากๆคะ ถ้าคุณไม่ช่วย ก็คงแย่ แน่ๆคะ
Date :
2010-11-22 09:22:06
By :
สงสารหน่อย
Load balance : Server 03