 |
ต้องแก้ที่ตรงไหนครับ มันขึ้นอย่างนี้อ่ะครับ error: Call to undefined function checked() ที่บรรทัด173 |
|
 |
|
|
 |
 |
|
อาจจะต้องหาว่า function checked() มันคืออะไรน่ะครับ ลองดูใน include ไฟล์
|
 |
 |
 |
 |
Date :
2009-06-07 20:55:02 |
By :
webmaster |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
นี่ครับ include ไฟล์
<?php
define("VAT",0.07);
define("MAXPRODUCT",20);
define("CARTPID",0);
define("CARTPNAME",1);
define("CARTPPRICE",2);
define("CARTPQTY",3);
define("CARTPIMAGE",4);
define("BASE",1);
$host = "localhost";
$username = "root";
$password = "123";
$dbname = "php379_ecom";
$link = @mysql_connect($host,$username,$password) or die("Can't Connect Mysql");
mysql_select_db($dbname,$link) or die("Not Found $dbname");
mysql_query("SET character_set_connection=utf8");
// ****************************************************
function alertphp($word,$url){
die("<script>
alert('$word');
window.location='$url';
</script>");
}
// ****************************************************
function alertphp2($word){
die("<script>
alert('$word');
history.back();
</script>");
}
//*******************************************************
function findshipprice($country,$shipment,$domestic){
if ($domestic == BASE){
// in country
$sql = "select * from country where country_id='".BASE."'";
$query = mysql_query($sql);
$row = mysql_fetch_array($query);
return $row["domesticfee"];
}
}
?>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
 |
 |
 |
 |
Date :
2009-06-07 21:21:50 |
By :
lifoun |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
เท่าที่ดูอาการแล้ว คงมีสาเหตุจากการเรียกใช้ฟังก์ชั่นที่ไม่มีอยู่จริงน่ะครับ
ผมสังเกตจากบรรทัดนี้
<?php echo checked($row["smid"],@$_SESSION["s_shipment"][0]) ?>
ซึ่งมีการเรียกใช้ฟังก์ชั่น checked เจ้าปัญหา แต่ใน include file ที่คุึณแปะไว้กลับไม่มีฟังก์ชั่นที่ว่า
ผมเสนอทางแก้คือ ให้เขียนฟังก์ชั่น checked ขึ้นมาทำงานตามที่ต้องการครับ ปัญหานี้คงหมดไป
|
 |
 |
 |
 |
Date :
2009-06-07 23:06:21 |
By :
slackman |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ช่วยแนะนำหน่อยได้ไหมครับ ขอบคุณครับ
|
 |
 |
 |
 |
Date :
2009-06-08 18:06:17 |
By :
lifoun |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|