ทำไม ผมใช้ mssql fetch array แล้ว ผมลที่ได้ออกมาแต่ record แรก ครับ
แนวคิดก็ถูกแล้วครับ มันทำได้ แต่ Code ออกมาผิด
Code (PHP)
$objExec_2 = mssql_query($strSQL_2); // พอประมวลคำสั่งนี้มันก็ query ใหม่ มันก็ได้ record เดิมตลอดสิครับ
$row_pic = mssql_fetch_array($objExec_2);
Date :
2011-12-28 16:50:36
By :
kerb
ขอบคุณมากครับ ผม copy มาจากข้างบนแล้วลมแก้นิเอง
Date :
2011-12-28 17:01:39
By :
phoenekia
สั้นๆ ได้ผลลัพธ์เหมือนกันครับ
Code (PHP)
$Img_address ='http://www.thebkkresidence.com';
$numRows=mysql_num_rows($objExec_2);
while($row_pic = mssql_fetch_array($objExec_2)){
--$numRows;
$pathFile = trim($row_pic['PathFile']);
$imgsrc = $pathFile == '' ? 'images/placeholder-200.jpg' : $Img_address.substr($pathFile,2);
printf('<img src="%s" border="0" width="120" height="90"/>',$imgsrc);
if($numRows>0){
echo ' ';
}
}
Date :
2011-12-28 17:05:20
By :
kerb
Load balance : Server 03