我無法將index.php
的編號從profile.php
中獲得。我試圖從一些#1解決方案,但沒有一個似乎工作
的index.php:
$id = getfield('id'); //getfield is a function that pulls out the fields
<a class="profile" href="profile.php?=<?php echo $id.' ">'.ucfirst ($firstname);?></a>
profile.php:
if(isset($_GET['id']))
{
$id= $_GET['id'];
echo $id;
}
else
{
echo 'cant get id';
}
輸出爲can't get id
。 我需要將ID回顯給我。 我不知道我在做什麼錯在這裏,如果有人能夠引導我走向正確的軌道,將不勝感激。
傑克在的index.php你在哪裏聲明/定義變量$ ID? –
讓我編輯它 – jake123
你的href應該最終看起來像'profile.php?id = ID_HERE'你目前沒有設置id爲任何東西 – ElefantPhace