|
|
|
ช่วยหน่อยครับ อยากเขียนระบบการให้คะแนน และ การวนรับค่า |
|
|
|
|
|
|
|
Code (PHP)
<?
## Connect to Database ##
mssql_connect("hostname","admin_name","admin_password");
mssql_select_db("database");
## Get form post ##
$name = $_POST['name'];
$subject = $_POST['subject'];
$score = $_POST['score'];
$comment = $_POST['comment'];
## Check Score ##
if ($score < '80') { $status = "fail"; } else { $status = "pass"; }
## Add Database ##
$sql="INSERT INTO Table (name, subject, score, pass, comment) VALUES ('$name', '$subject', '$score', '80', '$comment')";
## Send Mail ##
if ($status == "fail")
{
$strTo = "[email protected]";
$strSubject = ("Subject");
$strHeader = "From: [email protected]";
$strMessage = ("Message");
$flgSend = @mail($strTo,$strSubject,$strMessage,$strHeader);
}
?>
หรืออยากให้กระชับลงอาจให้ส่งเมล์ทันทีตั้งแต่ ## Check Score ## ก็ได้ครับ ผมแยกออกมาให้เข้าใจง่ายขึ้นครับ ^^
ถ้าใช้ mysql ก็เปลี่ยน s เป็น y ครับ
|
ประวัติการแก้ไข 2011-04-19 00:16:38 2011-04-19 00:18:36 2011-04-19 00:20:01 2011-04-19 00:21:57 2011-04-19 11:42:18
|
|
|
|
Date :
2011-04-19 00:15:28 |
By :
ParotZ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|