我的代碼是不runnig。如何在PHP上以$ _POST的形式傳遞變量。還是不可能?
原代碼
foreach ($ret[0]->trends as $topic) {
$a = $topic->name;
$a = preg_replace("'", " ", $a);
$i++;
echo "
<tr>
<td class='hidden-xs'>$i</td>
<td>$topic->name</td>
<td><form role='form' action='/trgy/follow.php' method='get'>
<input type='text' name='$a' placeholder='follow number' >
<input type='submit' value='Follow'></form>
</td>
</tr>";
$count = htmlspecialchars($_POST[$a]);
if (!empty($_GET[$topic->name])) {
$ret1 = $topic->name;
$lasttweets = $connectionOauth->get('search/tweets', array('q' => $ret1, 'count' => $count));
}
}
不運行 - 這個有問題的線 - 我不能指望
$a = $topic->name;
<input type='text' name='$a' placeholder='Number' >
$count = htmlspecialchars($_POST[$a]);
那是什麼代碼? PHP或HTML?在這兩種情況下,這裏是標籤? – YounesM
使用php標記和表單 –
如果使用正確的標記,則可以使用。 – Jer