1
爲什麼下面不起作用。只需要我的index.php頁面,並切斷「獲取」數據href似乎不起作用
<div class="wrapper">
<form class="form-signin" method="post">
<h2 class="form-signin-heading">Customer Not Found</h2>
No customer was found matching <?=$_POST['phone'];?>.<br/>
You can create a new customer with this number, or search again<br/>
<button
class="btn btn-lg btn-primary btn-block"
id="createCust"
>
Create A New Customer
</button>
<button class="btn btn-lg btn-primary btn-block" type="submit" name="login">Search Again</button>
</form>
</div>
<script type="text/javascript">
document.getElementById("createCust").onclick = function() {
location.href = "index.php?proc=newCust&p=<?=$_SESSION['phone'];?>";
};
</script>
我沒有看到任何「獲取」數據。我看到'$ _SESSION'數據。你檢查過什麼是由PHP生成的? –
GET數據是查詢字符串('''後面的所有內容)。 OP說他甚至沒有得到:'?proc = newCust&p =' –
這只是我寫的一個更大的應用程序的一個片段,只是做一些清理 - 下面的index.php?proc = newCust&p = 555-555- 1212'不會出現在網址中。當點擊按鈕時,它只是去index.php - 其他缺失 – Cain