|
|
|
ชวยทีผมจะให้มันลงมาต่อข้างล่างเรียงลำดับไปทำไงคัฟ ดูโค้ดให้ทีเปลี่ยนตรงไหน |
|
|
|
|
|
|
|
ชวยทีผมจะให้มันลงมาต่อข้างล่างเรียงลำดับไปทำไงคัฟ ดูโค้ดให้ทีเปลี่ยนตรงไหน
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & SQL Server (ODBC) Tutorial</title>
</head>
<body>
<form action="phpSQLServerAddSave.php" name="frmAdd" method="post">
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">CustomerID </div></th>
<th width="160"> <div align="center">id </div></th>
<th width="198"> <div align="center">pass</div></th>
<th width="97"> <div align="center">CountryCode </div></th>
<th width="70"> <div align="center">Budget </div></th>
<th width="70"> <div align="center">Used </div></th>
</tr>
<tr>
<td><div align="center"><input name="txtpropid" type="text" id="txtpropid" size="20">
</div></td>
<td><input name="txtid_loginid" type="text" id="txtid_loginid" size="20"></td>
<td><input name="txtid_passwd" type="text" id="txtid_passwd" size="20"></td>
<td><div align="center"><input name="txtsta_num" type="text" id="txtsta_num" size="20">
</div></td>
<td align="right"><input name="txtid_regdate" type="text" id="txtid_regdate" size="20"></td>
<td align="right"><input name="txtid_eday" type="text" id="txtid_eday" size="20"></td>
</tr>
</table>
<input type="submit" name="submit" value="submit">
</form>
</body>
</html>
Code (PHP)
<html>
<head>
<title>ThaiCreate.Com PHP & SQL Server (ODBC) Tutorial</title>
</head>
<body>
<?
$objConnect = odbc_connect("mhcmember","sa","") or die("Error Connect to Database");
$strSQL = "INSERT INTO chr_log_info ";
$strSQL .="(propid,id_loginid,id_passwd,sta_num,id_regdate,id_eday) ";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["txtpropid"]."','".$_POST["txtid_loginid"]."','".$_POST["txtid_passwd"]."' ";
$strSQL .=",'".$_POST["txtsta_num"]."','".$_POST["txtid_regdate"]."','".$_POST["txtid_eday"]."') ";
$objExec = odbc_exec($objConnect, $strSQL);
if($objExec)
{
echo "Save Done.";
}
else
{
echo "Error Save [".$strSQL."]";
}
odbc_close($objConnect);
?>
</body>
</html>
คือผมทำเว็บ php ติดต่อกับ ms sql SERVER 2008 แต่มีปัญหาว่าเวลากดคอนเนคข้อมูลแล้วมันขึ้นไปอยู่ข้างบน ผมอยากให้มันเรียงลำดับกันไป ขอโค้ดที ทำไงคัฟ
Tag : PHP
|
ประวัติการแก้ไข 2011-10-01 02:19:19 2011-10-01 02:19:59 2011-10-01 02:23:14
|
|
|
|
|
Date :
2011-10-01 02:18:16 |
By :
tnas1234 |
View :
934 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
order by id_idx asc
|
|
|
|
|
Date :
2011-10-01 02:37:52 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใส่ตรงไหนคัฟ ผมไม่ค่อยเป็นเท่าไร ขอบคุณ
|
|
|
|
|
Date :
2011-10-01 02:44:58 |
By :
tnas1234 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คุณคลิกขวาแล้ว open หรือะไรสักอย่าง มันก็ไม่เรียงหรอกครับ คุณต้อง select จากการ new query มา
select * from chr_log_info order by id_idx asc
|
|
|
|
|
Date :
2011-10-01 02:50:00 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|