<form method="post" action="https://domain.com/cgi-bin/cgi.exe">
<input name="exec" value="viewproduct" type="hidden">
<input name="customer" value="customer_name" type="hidden">
<input name="sku" value="sku_number" type="hidden"> <br>
<input type="submit">
</form>
我需要将结果数据存储在一个字符串变量中,以后我可以逐行解析它到多个数组中。
答案 0 :(得分:0)
$_POST['form_control_name']
答案 1 :(得分:0)
$ _ POST保存您的formdata。访问数据,如:
$_POST['exec'];
使用例如分隔符&#39;,&#39;
进行字符串输入 implode(',', $_POST);
答案 2 :(得分:0)
使用$_POST[]
数组。
$exec = $_POST['exec'];
$customer = $_POST['customer'];
$sku = $_POST['sku'];