Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次の URL を指定します。
<a href="abs.php?id=<?php echo $f1 ;?>" >Edit</a>
変数 $f1 を次の PHP ファイルに渡せないのはなぜですか?
のようにしてみてください
<a href="newpage.php?id=<?php echo $f1;?>">NeXt PaGe</a>
そして新しいページでURLからそのIDを取得します
echo "The Id is ".$_GET['id'];