Create a PHP Dropdown menu from a for loop?

后端 未结 7 1181
情书的邮戳
情书的邮戳 2020-12-18 13:13

I am trying to create a drop down menu with the options of 1,2,3 and 4.

The below code is what I am using just now and the dropdown is empty.

Any idea what I

7条回答
  •  情书的邮戳
    2020-12-18 13:32

    You basically use html without closing the php syntax.Your code should look like this:

      
    
            
    

    Or are you trying to echo the option? In that case you forgot the echo statement:

     echo ""; 
    

提交回复
热议问题