|
|
|
โค้ด php+mssql กับ mysql แก้ไม่ได้ ผู้รู้ช่วยตอบที |
|
|
|
|
|
|
|
จะเปลี่ยนไปใช้ sql server จะแก้ยังไง แก้แล้ว error แก้หน้านี้หน้าเดียวได้ ก็โล่งแล้วค่ะ ช่วยที
ไม่เคยทำ mssql
|
|
|
|
|
Date :
2012-01-12 12:44:51 |
By :
mnmnmn |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เปลี่ยนทุกฟังชันที่เป็น mysql_ เป็น mssql_
|
|
|
|
|
Date :
2012-01-12 13:03:42 |
By :
narubet |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองแล้วค่ะ ขึ้น Warning: Wrong parameter count for mssql_result() in C:\AppServ\www\saonline\car_view.php on line 60
ค่ะ
|
|
|
|
|
Date :
2012-01-12 15:23:51 |
By :
mnmnmn |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองดูตาม link ตามที่ส่งให้ครับ
|
|
|
|
|
Date :
2012-01-12 22:00:01 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วค่ะ พี่ win แต่
Code (PHP)
$type_id_select=$_GET[type_id];
sql= "select * from car where type_id='$type_id_select' ";
ตรงนี้จะใส่ยังไงใส่แล้ว error ค่ะ
|
|
|
|
|
Date :
2012-01-16 09:03:48 |
By :
mnmnmn |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมแนะนำให้คุณใช้ odbc_exec
Code (PHP)
$sql3="SELECT * FROM ชื่อตาราง";
$result3=odbc_exec($conn,$sql3);
$rs3=odbc_fetch_array($result3);
code connect
$myServer="test";
$myDB="db_test";
$myUser="root";
$myPass="123456";
//$conn=mssql_connect($myServer, $myUser, $myPass) or die("ไม่สามารถติดต่อเซิร์ฟเวอร์ได้");
$connection_string = "DRIVER={SQL Server};SERVER=$myServer;DATABASE=$myDB;AutoTranslate=no"; //เป็นการกำหนด connection
$conn = odbc_connect($connection_string,$myUser, $myPass) or die ("error connect");
//odbc_exec("SET NAMES tis620");
if($conn){
//echo "complete";
}else{
//echo "falie";
}
//mssql_select_db($myDB);*/
หวังว่าคงเกิดประโยชน์
|
|
|
|
|
Date :
2012-01-16 10:46:21 |
By :
โปรแกรมเมอร์ฝึกหัด |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|