我有一个打开contact-form.php页面的软件,当它打开时,我得到以下HTTP标头:
如何在PHP上将这些值呈现给表单?表单的典型格式为:
<input type="text" class="form-control" name="your_phone" placeholder="phone" required>
答案 0 :(得分:0)
您可以像这样检查$_GET
的值:-
<input type="text" class="form-control" name="your_phone" placeholder="phone" value = "<?php echo (!empty($_GET['phone_number'])) ? $_GET['phone_number'] : '' ;?>" required>