我在迴應從數據庫中覆蓋的區域列表。該列表有標題,並從數據庫中獲取子標題,從循環中創建結果,超文本url
$area_shire = '';
$area_district = '';
$area_name = '';
while($rows = mysql_fetch_array($query)):
if($rows['area_shire'] != $area_shire) {
echo '<h1>'.$rows['area_shire'].'</h1>';
$area_shire = $rows['area_shire'];
}
/* same for district using h2 and name using h3 */
endwhile;
我現在想使每個結果的超文本鏈接,所以我增加了
$area_shire_url = str_replace(' ', '_', $area_shire);
$area_district_url = str_replace(' ', '_', $area_district);
$area_name_url = str_replace(' ', '_', $area_name);
和更改每呼應
echo '<a href=\"Tree_Surgery_'.$area_shire_url.'.php\"><h2>'.$rows['area_shire'].'<br></h2>';
$area_shire = $rows['area_shire'];}
/* same for district using h2 and name using h3 */
這一直沒有奏效?
+1這是更好的,不能真的寫在我的iPad! :-) –
非常好,真的很感激,現在要花3個小時的時間來研究爲什麼這個方法有效,但肯定有大聲笑。非常感謝 – user1880357
祝你好運,找出爲什麼例子工作是學習如何編程的最佳方法。 – Jacco