|
|
|
มีปัญหา PHP ไม่แสดงข้อมูลครับไม่รู้จะทำยังไงแล้วครับขอความช่วยเหลือหน่อยครับ |
|
|
|
|
|
|
|
มือใหม่ครับ คือผมซื้อหนังสือ เรียนลัดสร้างเว็บแอพพลิเคชั่นด้วย PHP&mysql ฉบับWorkshop ของ ธันยพัฒน์ วงศ์รัตน์
แล้วผมลองทำระบบร้านกาแฟดู มันติดปัญหา ในช่วงการ เพิ่มข้อมูลสินค้านะครับ
เมื่อกดบันทึกข้อมูลมันไม่แสดงข้อมูลที่แอดเข้าไปนะครับ ซึ่งความจริงมันจะแสดงในส่วนล่าง พร้อมกับ ข้อความแก้ไข และ ลบ แต่นี้มันไม่แสดงอะไรเลย
นี้ส่วนโค๊ดครับ addproduct.php
Code (PHP)
<?
include"C:\AppServ\www\coffeeShop\include\connectionDb.php";
?>
<html>
<head>
<meta http-equiv="content-type" content="txt/html; charset=UTF-8"/>
<title>เพิ่มข้อมูลเครื่องดื่ม</title>
</head>
<body>
<?
$page=$_GET[page];
if($page==""){
$page=1;
}
$each=15;
$sql_item = "SELECT * FROM tbproduct;";
$result_item = mysql_query($sql_item);
$totals = mysql_num_rows($result_item);
$totalpages = ceil($totals/$each);
$goto = ($page-1)*$each;
$sql_item = "SELECT * FROM tbproduct ORDER BY itemid DESC limit $goto,$each;";
$result_item = mysql_query($sql_item);
$sql = "Select max(itemid) as maxitemid from tbproduct";
$result = mysql_db_query($dbname,$sql);
$dbarr = mysql_fetch_array($result);
if($dbarr){
$total = $dbarr['maxitemid']+1;
if (strLen($total)=="1"){
$total = "0" .$total;
}else{
$total = $total;
}
}else{
$total = $itemid;
}
?>
<form method="post" action="product_action.php?do=add">
<table width="100%" align="center" cellpadding="2" cellspacing="0">
<tr bgcolor="#FFCC99">
<td colspan="2" bgcolor="#FF9933"><div align="center"><strong>::เพิ่มข้อมูลเครื่องดื่ม::</strong></div></td>
</tr>
<tr>
<td align="right">รหัสเครื่องดื่ม</td>
<td><input maxlength="3" name="itemno" value="<?=$total;?>"></td>
</tr>
<tr>
<td align="center">ชนิดเครื่องดื่ม</td>
<td>
<select name="ref_typeid">
<option value="0">กรุณาเลือกชนิดเครื่องดื่ม</option>
<?
$sql_type="select * from tbtype";
$result_type=mysql_query($sql_type);
while($dbarr_type=mysql_fetch_array($result_type)){
echo "<option value=".$dbarr_type['typeid'].">".$dbarr_type['typename']."</option>";
}
?>
</select>
</td>
</tr>
<tr>
<td align="center">ประเภทเครื่องดื่ม</td>
<td>
<select name="ref_catid">
<option value="0">กรุณาเลือกประเภทเครื่องดื่ม</option>
<?
$sql_cat="select * from tbcategory";
$result_cat=mysql_query($sql_cat);
while($dbarr_cat=mysql_fetch_array($result_cat)){
echo "<option value=".$dbarr_cat['catid'].">".$dbarr_cat['catname']."</option>";
}
?>
</select>
</td>
</tr>
<tr>
<td align="right">ชื่อเครื่องดื่่ม</td>
<td><input maxlength="50" name="itemname"></td>
</tr>
<tr>
<td align="right">รายละเอียด</td>
<td><textarea name="detail" cols="40" rows="4"></textarea></td>
</tr>
<tr>
<td align="right">ราคา/หน่วย</td>
<td><input maxlength="50" name="itemprice" size="8">บาท</td>
</tr>
<tr>
<td align="right">ไฟล์รูปภาพ</td>
<td><input type="file" name="photo"><input type="hidden" name="MAX_FILE_SIZE" value="100000"></td>
</tr>
<tr>
<td colspan="2" align="center">
<div align="center">
<input type="submit" value="บันทึก" name="Submit">
<input type="reset" value="ล้างข้อมูล" name="Submit2">
<input type="hidden" name="itemNo" value="<?=$total; ?>">
</div></td></tr>
</table>
</form>
<table width="100%" border=0 align="center" cellpadding="2" cellspacing="0">
<tr bgcolor="#FFCC99">
<td bgcolor="#FF9900"><div align="center"><strong>ลำดับที</strong></div></td>่
<td bgcolor="#FF9900"><div align="center"><strong>รายกาีร</strong></div></td>่
<td bgcolor="#FF9900"><div align="center"><strong>ชนิด</strong></div></td>่
<td bgcolor="#FF9900"><div align="center"><strong>แก้ไข</strong></div></td>่
<td bgcolor="#FF9900"><div align="center"><strong>ลบ</strong></div></td>่
</tr>
<?
while ($dbarr_item=mysql_fetch_array($result_item)){
?>
</td>
<td>
<tr bgcolor="#FFFFFF">
<td align="center" width="10%"><? echo $dbarr_item['itemid']?></td>
<td><? echo $dbarr_item['itemname']?></td>
<?
$sql1="select * from tbtype where typeid='$dbarr_item[ref_typeid]'";
$result1=mysql_query($sql1);
$dbarr1=mysql_fetch_array($result1);
echo $dbarr1['typename'];
?>
<td>
<td align="center" width="15%">[<a href="product_action.php?do=frmedit&id=<? echo $dbarr_item['itemid'] ?>">แก้ไข</a>]</td>
<td align="center" width="15%">[<a href="product_action.php?do=delete&id=<? echo $dbarr_item['itemid'] ?>">ลบ</a>]</td>
</tr>
<?
}
?>
<tr>
<td align="center"></td>
<td colspan="4" align="right">รวมทั้งหมด<?=$total?>รายการ:
<?
if ($totalpager>1){
for($i=1;$i<=$totalpages;$i++){
if($i==$page){
echo"<b>หน้า $page</b>";
}else{
echo"|<a href=\"addproduct.php&page=$i\">$i</a> ";
}
}
}?>
</td>
</tr>
</table>
</body>
</html>
<?
include"C:\AppServ\www\coffeeShop\include\closeDb.php";
?>
อันนี้โค๊ดในส่วนการประมวลผลการเพิ่มข้อมูลครับ
Code (PHP)
if($_REQUEST['do']=="add"){
$itemid=$_POST['itemno'];
$typeid=$_POST['ref_typeid'];
$catid=$_POST['ref_catid'];
$tname=$_POST['itemname'];
$detail=$_POST['detail'];
$price=number_format($_POST['itemprice'],2,'.','');
if(($itemid=="") or ($tname=="") or ($typeid=="") or ($catid=="")){
echo"คุณใส่ข้อมูลไม่ครบ";
}else{
$photo=$_FILES['photo']['tmp_name'];
$photo_name=$_FILES['photo']['name'];
$photo_size=$_FILES['photo']['size'];
$photo_type=$_FILES['photo']['type'];
if($photo==""){
$sql_add="INSERT INTO tbproduct (itemid,itemname,unitprice,ref_catid,ref_typeid,status,detail,picture)
VALUES ('$itemid','$tname','$price','$ref_catid','$ref_typeid','1','$detail','');";
$resul_addt=mysql_query($sql_add);
echo"บันทึกข้อมูลเรียบร้อย";
echo"<meta http-equiv='refresh' content='2;url=addproduct.php'>";
}else{
$array_last=explode(".",$photo_name);
$c=count($array_last)-1;
$lastname=strtolower($array_last[$c]);
if($lastname=="gif" or $lastname=="jpg" or $lastname=="jpeg"){
$set_photo=explode(".",$photo_name);
$pname="item_".$_POST['itemno'];
$plname=$set_photo[1];
$photoname=$pname.".".$plname;
copy($photo,"C:\AppServ\www\coffeeShop\images\item".$photoname);
$sql_add="INSERT INTO tbproduct (itemid,itemname,unitprice,ref_catid,ref_typeid,status,detail,picture)
VALUES ('$itemid','$tname','$price','$ref_catid','$ref_typeid','1','$detail','$photoname');";
$result_add=mysql_query($sql_add);
echo"บันทึกข้อมูลเรียบร้อยแล้ว";
echo"<meta http-equiv='refresh' content='2;url=addproduct.php'>";
}else{
echo"<h3>ERROR:ไม่สามารถบันทึกไฟล์รูปภาพได้(ต้องเป็น .jpg .gif .jped เท่านั้น)</h3>";
echo"<meta http-equiv='refresh' content='2;url=addproduct.php'>";
}
unlink($photo);
}
}
ผมจนปัญญาแล้ว ขอให้พวกพี่ๆช่วยผมทีครับ
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2011-05-28 00:34:30 |
By :
Darkcanon |
View :
2020 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลอง echo sql ส่วนที่ insert ดูครับว่าค่าส่งมามั้ย?
|
|
|
|
|
Date :
2011-05-28 06:44:31 |
By :
mr.v |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองดู Code แบ่งหน้าของ ThaiCreate ครับ
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & MySQL Tutorial</title>
</head>
<body>
<?
$objConnect = mysql_connect("localhost","root","root") or die("Error Connect to Database");
$objDB = mysql_select_db("mydatabase");
$strSQL = "SELECT * FROM customer ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$Num_Rows = mysql_num_rows($objQuery);
$Per_Page = 2; // Per Page
$Page = $_GET["Page"];
if(!$_GET["Page"])
{
$Page=1;
}
$Prev_Page = $Page-1;
$Next_Page = $Page+1;
$Page_Start = (($Per_Page*$Page)-$Per_Page);
if($Num_Rows<=$Per_Page)
{
$Num_Pages =1;
}
else if(($Num_Rows % $Per_Page)==0)
{
$Num_Pages =($Num_Rows/$Per_Page) ;
}
else
{
$Num_Pages =($Num_Rows/$Per_Page)+1;
$Num_Pages = (int)$Num_Pages;
}
$strSQL .=" order by CustomerID ASC LIMIT $Page_Start , $Per_Page";
$objQuery = mysql_query($strSQL);
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">CustomerID </div></th>
<th width="98"> <div align="center">Name </div></th>
<th width="198"> <div align="center">Email </div></th>
<th width="97"> <div align="center">CountryCode </div></th>
<th width="59"> <div align="center">Budget </div></th>
<th width="71"> <div align="center">Used </div></th>
</tr>
<?
while($objResult = mysql_fetch_array($objQuery))
{
?>
<tr>
<td><div align="center"><?=$objResult["CustomerID"];?></div></td>
<td><?=$objResult["Name"];?></td>
<td><?=$objResult["Email"];?></td>
<td><div align="center"><?=$objResult["CountryCode"];?></div></td>
<td align="right"><?=$objResult["Budget"];?></td>
<td align="right"><?=$objResult["Used"];?></td>
</tr>
<?
}
?>
</table>
<br>
Total <?= $Num_Rows;?> Record : <?=$Num_Pages;?> Page :
<?
if($Prev_Page)
{
echo " <a href='$_SERVER[SCRIPT_NAME]?Page=$Prev_Page'><< Back</a> ";
}
for($i=1; $i<=$Num_Pages; $i++){
if($i != $Page)
{
echo "[ <a href='$_SERVER[SCRIPT_NAME]?Page=$i'>$i</a> ]";
}
else
{
echo "<b> $i </b>";
}
}
if($Page!=$Num_Pages)
{
echo " <a href ='$_SERVER[SCRIPT_NAME]?Page=$Next_Page'>Next>></a> ";
}
mysql_close($objConnect);
?>
</body>
</html>
Go to : PHP MySQL List Record Paging/Pagination
|
|
|
|
|
Date :
2011-05-28 06:50:31 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เป็นเหมือนกันครับ
แอดแล้วทุกอย่างเข้า db แต่ รูปไม่เข้า
แต่พอเราแก้ไข เพื่อแอดรูปกลับได้ งงครับ = =
|
|
|
|
|
Date :
2013-04-25 22:33:19 |
By :
rut2532 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<input maxlength="3" name="itemno" value="<?=$total;?>">
ต้องมีไอดี
<input type="text" maxlength="3" name="itemno" id="itemno" value="<?=$total;?>">
|
|
|
|
|
Date :
2013-04-26 12:08:16 |
By :
lookpla26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|