//เลือกออกมาก่อน
$sqlcommand="SELECT * FROM tb_member WHERE id='$id' AND status='Member'";
$result=mysql_query($sqlcommand);
$num=mysql_num_rows($result);
$rec=mysql_fetch_assoc($result);
$id=$rec['id'];
$status=$rec['Member'];
//if not member
if(!$status) {
msgbox("ERROR : You're not Member not allow!!");
redirect("product.php"); //หลุดไปหน้าอื่นเลย ( You're not Member not allow พอแสดงตัวนี้ ก็หลุด loop ไปเลย ไม่ให้เข้าเงื่อนไข อัพเดทเลย )
} else{
$id=$_POST['id'];
$lastnames=$_POST['Lname'];
if(isset($_POST['save'])) {
$sqlupdate="UPDATE tb_member SET lastname='$lastnames' where id='$id' AND status='Member'";
$res= mysql_query($sqlupdate) or die (mysql_error());
if($res){
msgbox("Update Success already");
redirect("product.php");
}else{
msgbox("You're not Member not allow");
redirect("product.php");
}
}
}
echo "sqlupdate :".$sqlupdate;
echo "sqlcommand".$sqlcommand;
แต่ตอนนี้มัน หลุด loop มาหน้า product.php เลยอะ
เขียนเงื่อนไขยังไงดีครับ
สงสัยว่าเงื่อนไขคงไม่ถูก
แก้ยังไงดีหึ ถ้า msgbox("You're not MemberAccount not allow");
แล้วก็ ให้เด้งกลับไปหน้า product.php เลย อะ
//เลือกออกมาก่อน
$sqlcommand="SELECT * FROM tb_member WHERE id='$id' AND status='MemberAccount'";
$result=mysql_query($sqlcommand);
$num=mysql_num_rows($result);
$rec=mysql_fetch_assoc($result);
$id=$rec['id'];
$status=$rec['MemberAccount'];
//if not member
if(!$status) {
echo"ERROR : You're not MemberAccount not allow!!";
echo "<meta http-equiv='refresh' content='2;URL=หน้าที่ให้ไป.php'>";
} else{
$id=$_POST['id'];
$lastnames=$_POST['Lname'];
if(isset($_POST['save'])) {
$sqlupdate="UPDATE tb_member SET lastname='$lastnames' where id='$id' AND status='MemberAccount'";
$res= mysql_query($sqlupdate) or die (mysql_error());
if($res){
echo"Update Success already";
echo "<meta http-equiv='refresh' content='2;URL=หน้าที่ให้ไป.php'>";
}else{
//msgbox("can't update you are not Business Account");
echo"You're not MemberAccount not allow";
echo "<meta http-equiv='refresh' content='2;URL=หน้าที่ให้ไป.php'>";
}
}
}
echo "sqlupdate :".$sqlupdate;
echo "sqlcommand".$sqlcommand;
ไม่รู้ว่าตรงตามที่ต้องการรึป่าวนะครับ แต่เงื่อนไขของคุณใช้ msgbox มันของ .net นี่ครับ ถามต่อละกันไฟล์นี้เป็น php or asp ครับ ถ้า asp ใช้ msgbox ได้ครับ