|
|
|
ต้องการเรียงหน้าต่างการสั่งซื้อของ php เข้ามาช่วยหน่อยนะครับ |
|
|
|
|
|
|
|
สวัสดีครับ คือผม ไม่รู้ว่าจะต้องปรับยังไง
ให้มันเรียงจาก ซ้ายไปขวา ประมาณ 3-4 ช่องอะครับ พอครบเเล้ว เเล้วให้ไปเริ่มซ้ายใหม่อะครับ
ตอนนี้คือเพิ่มจาก จัดการหลังร้าน เเล้วมันจะเรียงลงมาเรื่อยๆ ไม่ได้ไปทางที่ผมอยากได้ ไครพอรู้บอกหน่อยนะคับ
อันนี้โค้ตครับ
Code (PHP)
<?
if(!$_GET){
$sql_p = "SELECT * FROM `product` ORDER BY id DESC";
$qry_p = mysql_query($sql_p);
while($rst_p = mysql_fetch_array($qry_p)){
echo "<div><img width='150' class='img-rounded' style='margin:10px; border:1px #333 solid;' src='".$rst_p["picture"]."' /><br> ชื่อ".$rst_p["name"]." - ".$rst_p["rank"]." - ".$rst_p["price"]."(<a href='?id=".$rst_p["code_id"]."'>สั่งซื้อ</a>)</div>";
}
} else{
if($_GET){
if(isset($_GET["id"]) && !$_GET["act"] && !$_GET["cmd"]){
$sql_p = "SELECT * FROM `product` WHERE `code_id` LIKE '".mysql_real_escape_string($_GET["id"])."'";
$qry_p = mysql_query($sql_p);
$rst_p = mysql_fetch_array($qry_p);
$sql_status = "SELECT * FROM `code` WHERE `code_id` LIKE '".mysql_real_escape_string($_GET["id"])."' AND `status`='1'";
$qry_status = mysql_query($sql_status);
$num_status = mysql_num_rows($qry_status);
if($num_status){
$status = $num_status;
} else{
$status = "<font color='red'>หมด</font>";
}
if($num_status){
$buy_btn = "<a href='?id=".mysql_real_escape_string($_GET["id"])."&act=buy'>สั่งซื้อ</a>";
}
echo "<div style='border:#33 1px solid;'><img width='300' src='".$rst_p["picture"]."' /><br />ชื่อ : <strong>".$rst_p["name"]."</strong><br />ยศที่ต้องการ : <strong>".$rst_p["rank"]."</strong><br />ราคา : <strong>".$rst_p["price"]."</strong> บาท<br />สถานะ : <strong>".$status."</strong><br/></div>".$buy_btn;
}
if($_GET["id"] && $_GET["act"] && $_GET["act"]=="buy" && !$_GET["cmd"]){
$qry_c = mysql_query("SELECT * FROM `code` WHERE `code_id` LIKE '".mysql_real_escape_string($_GET["id"])."' AND `status`=1");
$num_c = mysql_num_rows($qry_c);
if($num_c){
echo '<div align="center"><br /><br /><a class="btn btn-success btn-sm" href="?id='.mysql_real_escape_string($_GET["id"]).'&act=buy&cmd=confirm">ยืนยัน</a> | <a class="btn btn-danger btn-sm" href="itemcode.php">ยกเลิก</a></div>';
} else{
echo '<div align="center"><br /><br /><h1><font color="#FF0000">สินค้าหมด</font></h1><a class="btn btn-danger btn-sm" href="itemcode.php">กลับ</a></div>';
}
} else if($_GET["id"] && $_GET["act"] && $_GET["act"]=="buy" && $_GET["cmd"] && $_GET["cmd"]=="confirm"){
$id_code = mysql_real_escape_string($_GET["id"]);
$qry_a = mysql_query("SELECT * FROM account WHERE username LIKE '".$_SESSION["username"]."'");
$rst_a = mysql_fetch_array($qry_a);
//Purchase Product
$sql_p = "SELECT * FROM product WHERE code_id LIKE '".$id_code."'";
$qry_p = mysql_query($sql_p);
$rst_p = mysql_fetch_array($qry_p);
if($rst_p["price"]>$rst_a["point"]){
echo 'ยอดเงินของคุณไม่พอ';
} else{
$qry_c = mysql_query("SELECT * FROM `code` WHERE `code_id` LIKE '".$id_code."' AND `status`=1");
$num_c = mysql_num_rows($qry_c);
$rst_c = mysql_fetch_array($qry_c);
$sql_buy = "UPDATE `".$config["db"]."`.`account` SET `point` = `point`-'".$rst_p["price"]."' WHERE `account`.`id` =".$_SESSION['id']." LIMIT 1 ;";
$sql_own = "INSERT INTO `".$config["db"]."`.`owner` (`id` ,`username` ,`price` ,`txid` ,`code_id` ,`code`,`date`)VALUES ";
$sql_own .= "(NULL,'".$_SESSION["username"]."','".$rst_p["price"]."','".strtoupper(uniqid())."','".$rst_c["code_id"]."','".$rst_c["code"]."','".date("Y-m-d H:i:s")."');";
$sql_sta = "UPDATE `".$config["db"]."`.`code` SET `status` = '0' WHERE `code`.`id` =".$rst_c["id"]." LIMIT 1 ;";
if($num_c){
if(mysql_query($sql_buy) && mysql_query($sql_own) && mysql_query($sql_sta)){
echo '<div align="center"><h1>สั่งซื้อสำเร็จ</h1><a class="btn-xs btn btn-primary" href="history.php">ดูโค้ด</a></div>';
} else{
echo '<h1>ไม่สามารถสั่งซื้อได้</h1> (<a href="itemcode.php"><font color="#FF0000">ย้อนกลับ</font></a>)';
}
} else{
echo '<h1>สินค้าหมด</h1> (<a href="itemcode.php"><font color="#FF0000">ย้อนกลับ</font></a>)';
}
}
//Purchase Product
} else{
echo '<script>window.location="?id='.mysql_real_escape_string($_GET["id"]).'&act=buy";</script>';
}
if(!$_GET["id"] && !$_GET["act"]){
die("404");
}
} //$_GET
}
?>
Tag : MySQL, Windows
|
|
|
|
|
|
Date :
2017-02-10 16:58:53 |
By :
ggthkk |
View :
691 |
Reply :
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
PHP MySQL Multiple Column
|
|
|
|
|
Date :
2017-02-10 17:10:05 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้า 3 col ก็กำหนด ตัวแปร $col=1 แล้วใช้ if ($col%3 == 1) : echo "<tr>" กับ ปิดท้ายด้วย if($col%3 == 0) : echo "</tr>"
เปลี่ยนตัวหารตามจำนวน col ที่อยากได้
|
|
|
|
|
Date :
2017-02-10 19:33:09 |
By :
tenten |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณทุกคนมากๆครับ
|
|
|
|
|
Date :
2017-02-10 20:45:47 |
By :
ggthkk |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2017-02-14 09:26:45 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|