我正在使用一个简单的 PHP 脚本在我的页脚中显示链接。这些链接和锚文本在我的数据库中。使用我正在使用的代码显示链接和锚文本没有问题。这是我的代码在运行时的外观示例。
使用 PHP/MySQL 如何将数据库中的值拉入我的网站并在 while 循环比较中?
我的代码的一小段摘录:
<?php
// Change the limit in db_connect.
$link_counter = 0;
while ($link_counter < $counter_query_result[1]['counter_value']; ){
echo $links_array[$link_counter];
$link_counter++;
}
?>
</ul>
</div>
<div id="footer_links_box">
<ul>
<?php
while ($link_counter < $counter_query_result[2]['counter_value']; ){
echo $links_array[$link_counter];
$link_counter++;
}
?>
</ul>
</div>
<div id="footer_links_box">
<ul>
<?php
while ($link_counter < $counter_query_result[3]['counter_value']; ){
echo $links_array[$link_counter];
$link_counter++;
}
?>
</ul>
</div>
<div id="footer_links_box">
<ul>
<?php
while ($link_counter < $counter_query_result[4]['counter_value']; ){
echo $links_array[$link_counter];
$link_counter++;
}
?>
</ul>
</div>
<div id="footer_links_box">
<ul>
<?php
while ($link_counter < $counter_query_result[5]['counter_value']; ){
echo $links_array[$link_counter];
$link_counter++;
}
?>
echo $links_array[$link_counter];
$link_counter++;
}
?>
</ul>
</div>
<div id="footer_links_box">
<ul>
<?php
while ($link_counter < echo $counter_query_result[1]['counter_value_2']; ){
echo $links_array[$link_counter];
$link_counter++;
}
?>