我只使用 PHP 大约一个星期(尽管我已经使用 ASP 12 年了,但我绝不是专家)所以请多多包涵……我正在尝试将我的 Classic ASP 网站转换为php。到目前为止,我已经能够找到大多数问题的答案,但我被困在这个问题上。
我正在寻找与我在 ASP 中使用的 .MoveNext 函数等效的 PHP。
在示例中,我有一个包含大约 450 条记录的表,虽然我希望将它们全部显示,但我只希望每列有 100 条记录。它可能不是很好的代码,但它对我有用。
set rsSpecial = Server.CreateObject("ADODB.recordset")
'Grab all the Supporters Names and Website URLs Order by Name
rsSpecial.Open "SELECT sName, sURL FROM gktwspcf ORDER BY sName ASC", conn
if not rsSpecial.EOF then
sSpecialFriends = sSpecialFriends & "<table width=" & Chr(34) & "98%" & Chr(34) & ">" & vbCrLf
Do
i=0
sSpecialFriends = sSpecialFriends & "<td valign=" & Chr(34) & "top" & Chr(34) & ">" & vbCrLf
sSpecialFriends = sSpecialFriends & "<p>" & vbCrLf
Do
if rsSpecial("sURL") <> "" Then
sSpecialFriends = sSpecialFriends & "<a href='"& Replace(rsSpecial("sURL"), "&", "&") & "' target=" & Chr(34) & "_blank" & Chr(34) & ">"
sSpecialFriends = sSpecialFriends & "" & Replace(rsSpecial("sName"), "&", "&") & ""
sSpecialFriends = sSpecialFriends & "</a>"
sSpecialFriends = sSpecialFriends & "<br>" & vbCrLF
'Otherwise just list their name
else
sSpecialFriends = sSpecialFriends & "" & Replace(rsSpecial("sName"), "&", "&") & ""
sSpecialFriends = sSpecialFriends & "<br>" & vbCrLF
end if
i=i+1
rsSpecial.MoveNext
Loop Until i=100 or rsSpecial.EOF
sSpecialFriends = sSpecialFriends & "</td>" & vbCrLf
Loop Until rsSpecial.EOF
sSpecialFriends = sSpecialFriends & "</table>" & vbCrLf
end if
rsSpecial.Close
Set rsSpecial=Nothing
我似乎找不到一个很好的例子来说明如何在 PHP 中重新创建一个嵌套循环,我可以在其中移动到下一条记录。这就是我目前所拥有的——它显示每条记录,100 次,100 列宽。 我想我需要找到某个地方来插入与 MoveNext 等效的 PHP。
$result = mysql_query ("SELECT sName, sURL FROM gktw_spcFriends ORDER BY sName ASC", $con) or die(mysql_error());
$sSpecialFriends = "";
if (mysql_num_rows($result))
$row = mysql_fetch_array($result);
{
$sSpecialFriends = $sSpecialFriends."<table width=".Chr(34)."98%".Chr(34).">" ."\n";
do
{
$i=0;
$sSpecialFriends = $sSpecialFriends."<td valign=".Chr(34)."top".Chr(34).">" ."\n";
$sSpecialFriends = $sSpecialFriends."<p>" ."\n";
do
{
//Check for URL
if ($row['sURL'] != "")
{
$sSpecialFriends = $sSpecialFriends . "<a href='". str_replace("&", "&", $row['sURL']) . "' target=" . Chr(34) . "_blank" . Chr(34) . ">"."\n";
$sSpecialFriends = $sSpecialFriends . "" . str_replace("&", "&", $row['sName']) . "" ."\n";
$sSpecialFriends = $sSpecialFriends . "</a>" ."\n";
$sSpecialFriends = $sSpecialFriends . "<br>" ."\n";
}
//Otherwise just list their name
else
{
$sSpecialFriends = $sSpecialFriends . "" . str_replace("&", "&", $row['sName']) . "" ."\n";
$sSpecialFriends = $sSpecialFriends . "<br>" ."\n";
}
$i=$i+1;
}
while ($i<100);
$sSpecialFriends = $sSpecialFriends . "</td>" ."\n";
}
while($row = mysql_fetch_array($result));
$sSpecialFriends = $sSpecialFriends . "</table>" ."\n";
}
mysql_close($con);
因此,如果有人可以帮助我使用与 ASP 的 MoveNext 等效的 PHP 和/或完成我想要完成的工作的最佳方式。
感谢您的任何帮助。