-1
PHP動態按鈕值,這是我的問題:從陣列
echo '<form class="dugme" method="post" name="$b" value="">
<button type="submit">Pusti</button>
</form>';
我已經定義$ B可變,並希望與for循環($ B繪製此頁面上= 0; $ B < = 10; $ b ++)。但是在每一個使用「」,「'的場景......我得到的名稱=」$ b「;
我的代碼:
for ($b=0; $b <= 10; $b++){
echo '<form class="dugme" method="post" name="$b" value="">
<button type="submit">Pusti</button></form>';
}