HTML代碼: 如何在鏈接中使用php插入變量?
<html>
<body>
<?php
if (isset($_POST['submit'])){
$idfb = $_POST['idfb'];
$url = "http://graph.facebook.com/$idfb/picture?type=$size";
}
?>
<input name="idfb" id="idfb" required placeholder="Enter the ID in this field" type="text">
<button type="submit" class="button" href="loading.php">Hack this Facebook Account</button>
<center><img class="thumbnail" src="http://graph.facebook.com/<?php echo $idfb ?>/picture?type=large"></center>
</body>
</html>
所以我想從輸入插入Facebook的ID爲鏈接,並抓住這個帳戶ID的資料圖片。 這是對的嗎?
是的,如果我們假設'$ _POST'有數據 - 但'
不工作:它在做什麼?它是否爲'$ idfb'放置任何東西?你在用'$ url'做什麼?它是否獲得'$ idfb'的值? – alanlittle
如果你回顯你的變量和url,你會得到你期待的值嗎?你也正確地通過另一個表單的POST方法發送你的變量= – Lixus