-1
我試圖代碼的動態形式,其中PHP可以從給定的表單輸入名稱箱子的SQL查詢,爲的exaplePHP查找字符串模式=「用戶名」 NAME =「密碼」
<form name="f" method="post" action="#">
<input type=text name="username">
<input type=text name="email">
<input type=text name="phone">
</form>
我想要提取patter name =「value」並從中提取「value」..我知道我可以使用 preg_match。但我不知道我該如何確切地做到這一點,請幫助我。 `
<?php
$subject = "<html><body><form name="f" method="post" action="#">
<input type=text name="username">
<input type=text name="email">
<input type=text name="phone">
</form></html></body>";
$pattern = '/^def/'; // what patter should i use to extract only input type names
preg_match($pattern, $subject, $matches, PREG_OFFSET_CAPTURE, 3);
print_r($matches);
?>
預先感謝
你爲什麼需要這個?你可以在提交表單後得到所有的值 –
我想從表單中創建動態的sql查詢謝謝你的幫助:) – Allex