-1
I wrote an HTML code within a structure for
, but is not identifying, 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>
I do not know if it will solve but take it from the beginning of your . PHP
<!DOCTYPE html>
– hugocsl
What happens (define "is not identifying")? what error appears?
– Costamilam
Your
for
has a mistake, it should be like this,for($inicio=1;$inicio<=10;$inicio++){
– Dobrychtop