我正在尝试使用URL中定义的变量填充表单。我生成的URL看起来像这样。
http://serverip/Forms/webform.php?customer_phone_c=--A--phone_number--B--&newtitle_c=--A--title--B--&newfirstname_c=--A--first_name--B--&newsurname_c=--A--last_name--B--&address_1_c=--A--address1--B--&address_2_c=--A--address2--B--&address_3_c=--A--address3--B--&postcode_c=--A--postal_code--B--&agent_name_c=--A--fullname--B--
任何人都可以帮我解释为什么这对我不起作用。我是新手,很想让它发挥作用。
在我的webform.php文件中,我尝试使用以下细分。表单本身有效,但不会在“客户电话”字段中填入“--A - phone_number - B - ”
<td style="text-align: left; font-size: 12px; font-weight: normal;" width="15%"><span>Customer Phone: </span></td>
<td style="font-size: 12px; font-weight: normal;" width="35%"><span><input id="customer_phone_c" type="text" value="<?php echo $_GET['--A--phone_number--B--'];?>" name="customer_phone_c" /></span></td>
答案 0 :(得分:1)
您正在引用变量值,因此不会返回任何内容。您必须使用变量名称。
使用<?php echo $_GET['customer_phone_c']; ?>
获取该变量的值(即--A - phone_number - B - )