|
|
|
รันบน fire fox ใช้ไม่ได้ รันบน ie ใช้ได้ตามปกติ แต่ fire fox ใช้ไม่ได้ |
|
|
|
|
|
|
|
รันได้หมดแหละครับ ถ้าเขียนไม่ผิด
|
|
|
|
|
Date :
2009-05-13 17:24:29 |
By :
plakrim |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ที่ว่ารันไม่ได้น่ะเป้น PHP หรือว่า Javascript ครับ ถ้าเป็น PHP แล้วล่ะก็ไม่เกี่ยวกับเบราเซอร์เลยเพราะมันประมวณผลอยู่ฝั่งเซิฟเวอร์นู้นแนะ
ยกเว้นว่ามีการใช้งาน javascript แล้ว คำสั่ง javascript ไม่ทำงานมันก็จะเป็นพราะความผิดของ Microsoft เขานั้นแหละที่สร้างเบราเซอร์ที่
ไม่ยึดตามแบบสากลการแก้ก็คือต้องระวังเรื่องการใช้คำสั่งบางคำสั่งเพราะจะไม่เหมือนกันเวลาไปใ้ช้กับ firefox
|
|
|
|
|
Date :
2009-05-13 17:36:47 |
By :
melodyApinan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ที่ว่าคำสั่งบางคำสั่งนี่อะไรบ้างค่ะ
ตอนนี้ ปิดจาว่าสคริป ไปหมดแล้วอ่ายังรันไม่ได้เรยย
กลุ้มๆๆ
|
|
|
|
|
Date :
2009-05-14 14:04:00 |
By :
phatgrilzz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
<?php
#ติดต่อไฟล์connect
include("Connections/dbconnect.php");
mysql_connect($hostname_database,$username_db,$password_db) or die("ติดต่อ Host ไม่ได้");
mysql_select_db($database_db) or die("ติดต่อฐานข้อมูลไม่ได้");
mysql_db_query($database_db,$sql);
#ประกาศค่าตัวแปร
$Submit=$_POST[Submit];
$st_email=$_POST[st_email];
$st_cf_mail=$_POST[st_cf_mail];
$st_pass=$_POST[st_pass];
$st_cf_pass=$_POST[st_cf_pass];
$st_nickname=$_POST[st_nickname];
#เงื่อนไขในการกดตกลง
if($Submit=="Submit")
{
#ให้กรอกครบทุกช่อง
if ($st_email == "" || $st_cf_mail == ""|| $st_pass == ""|| $st_cf_pass == ""|| $st_nickname == "")
{
echo"<font face=ms sansarift size=2>
<font color=red><b>"."Please insert"."</b> Data into Blank <br><br>";
echo"<a href='st-regist.php'>Back to Student Registation </a>";
exit();
}
#ตรวจสอบอีเมลให้ตรงกัน
if ($st_email!== $st_cf_mail )
{
echo"<font face=ms sansarift size=2>
<font color=red><b>"."Please insert"."</b> Data into Blank <br><br>";
echo"<a href='st-regist.php'>Back to Student Registation </a>";
exit();
}
#ตรวจสอบอีเมลให้ตรงกัน
if ($st_pass!== $st_cf_pass )
{
echo"<font face=ms sansarift size=2>
<font color=red><b>"."Your password"."</b> and confirm not same <br><br>";
echo"<a href='st-regist.php'>Back to Student Registation </a>";
exit();
}
#ตรวจสอบว่ากรอก ข้อมูลมาหรือไม่
#ตรวจสอบอีเมล
if (!eregi("^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*$", $st_email))
{
echo"<font face=ms sansarift size=2>
<font color=red><b>"."E-mail Not"."</b> Correct <br><br>";
echo"<a href='st-regist.php'>Back to Student Registation </a>";
exit();
}
#ตรวจสอบ mailห้ามซ้ำ
$sql = "select st_email from student where st_email = '$st_email' ";
$query_id = mysql_query($sql);
if(mysql_num_rows($query_id) != 0){
echo"<font face=ms sansarift size=2>
<font color=red><b>"."This mail"."</b> is register alredy <br><br>";
echo"<a href='st-regist.php'>Back to Student Registation </a>";
}else{
echo "<meta http-equiv=refresh content=0;URL=st-regist-success.php>";
}
#เพิ่มลงฐานข้อมูลดาต้าเบส
mysql_query("INSERT INTO student(
st_email,
st_cf_mail,
st_pass,
st_cf_pass,
st_nickname )
values
('$st_email',
'$st_cf_mail',
'$st_pass',
'$st_cf_pass',
'$st_nickname')") or trigger_error(mysql_error(),E_USER_ERROR);
//echo"<font face=ms sansarift size=2>
//<font color=red><b>"."Welocome"."</b> Student <br><br>";
//echo"<a href='st-forum.php'> Student Forum </a>";
echo "<meta http-equiv=refresh content=0;URL=st-regist-success.php>";
}
#ปิดฐานข้อมูล
mysql_close();
?>
?>
|
|
|
|
|
Date :
2009-05-14 14:07:06 |
By :
phatgrilzz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มี error อะไรไหม ขี้เกียจไล่ ตาลาย
|
|
|
|
|
Date :
2009-05-14 22:23:11 |
By :
plakrim |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่เห็นมี error ตรงไหนเรยยอ่าค่ะ
|
|
|
|
|
Date :
2009-05-15 10:18:40 |
By :
phatgrilzz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อยากรู็เหมือนกานอะคะ ทำได้รึยังอะคะ ????
|
|
|
|
|
Date :
2011-03-30 16:10:04 |
By :
คนอยากรู้ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
capture มาดูหน่อยครับ
|
|
|
|
|
Date :
2011-03-30 19:00:37 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สถานการณ์ แบบนี้ ผมแนะนำให้ ไล่ comment ทีละส่วน หรือ ทีละ บรรทัดไปเรื่อย ๆ ครับ แล้วจะเจอข้อผิดพลาดเอง
|
|
|
|
|
Date :
2011-03-30 21:05:07 |
By :
seksan2011 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|