I wrote an HTML code inside a for
structure, but it is not identifying, it follows the code:
<form method="get" action="_modelophp.php">
<h1>tabuada</h1>
<select name="num">
<?php
for{$inicio=1;$inicio<=10;$inicio++}{
echo "<option>$inicio</option>";
}
?>
</select>