|
|
|
ช่ายหน่อค่ะนู๋ไม่ฉลายจริงๆๆเรื่องเขียนโปรแกรม ใครพอช่วนชีวิตนู๋ได้บ้างค่ะ |
|
|
|
|
|
|
|
http://www.php.net/manual/en/mysql.examples-basic.php
ลองเรียนรู้จากในนี้ดูก่อนเถอะนะ
|
|
|
|
|
Date :
2010-09-18 21:19:12 |
By :
mr.v |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ภาษาไรอ่ะ - -"
อ่านแล้วเหมือนคนลิ้นสั้น ไงไม่รู้แฮะ
|
|
|
|
|
Date :
2010-09-19 09:46:38 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?
$id = $_GUT["comID"];
$brand = $_GUT["comBrand"];
$host ="202.55.55.55";
$username"aratar";
$password="hahaha";
$dbname="myDatabase";
$tblComputer="Computer";
mysql_connect($host,$username,$password) or die("เชื่อมต่อฐานข้อมูลไม่ได้");
mysql_select_db($dbname) or die("ไม่สามารถเลือกฐานข้อมูลได้");
$db_Computer = mysql_query("SELECT*FROM $tblCompute WHERE comID='$id' AND comBrand='$brand' ");
$check_Computer = mysql_num_rows($db_Computer);
if($check_Computer)
{
echo"ค้นพบยี่ห้อและรุ้นคอมพิวเตอร์ที่ต้องการ";
}
else
{
echo"ไม่พบค้นพบที่ต้องการ";
}
?>
แบบนี้ถูกป่าวค่ะ
|
|
|
|
|
Date :
2010-09-19 13:56:02 |
By :
ninjaKMU |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
กับแบบที่สองนี้ อัน ไหน จะ ดีกว่ากันคร้า
Code (PHP)
if(isset($_POST['submit']))
{
if($comID == "" || $comBrand =="")
{
echo"ไม่บพข้อมูลที่ต้องการ";
}
$host ="202.55.55.55";
$username"aratar";
$password="hahaha";
$dbname="myDatabase";
$tblComputer="Computer";
mysql_connect($host,$username,$password) or die("เชื่อมต่อฐานข้อมูลไม่ได้");
mysql_select_db($dbname) or die("ไม่สามารถเลือกฐานข้อมูลได้");
$db_Computer = mysql_query("SELECT*FROM $tblCompute WHERE comID='$id' AND comBrand='$brand' ");
$check_Computer = mysql_num_rows($db_Computer);
if($check_Computer)
{
echo"ค้นพบยี่ห้อและรุ้นคอมพิวเตอร์ที่ต้องการ";
}
else
{
echo"ไม่พบค้นพบที่ต้องการ";
}
?>
|
|
|
|
|
Date :
2010-09-19 13:59:33 |
By :
ninjaKMU |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใครก็ได้ ช่วยตรวจ หน่อยคร้า นู๋ทำถูกป่าว
|
|
|
|
|
Date :
2010-09-19 15:12:50 |
By :
ninjaKMU |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|