this is my problem:
echo '<form class="dugme" method="post" name="$b" value="">
<button type="submit">Pusti</button>
</form>';
I have defined $b variable, and want to draw this on page with for loop ($b=0; $b<=10; $b++) .
But in every scenario with " ", ' ' ... i get name="$b" ;
My code:
for ($b=0; $b <= 10; $b++){
echo '<form class="dugme" method="post" name="$b" value="">
<button type="submit">Pusti</button></form>';
}