Skip to content
Advertisement

PHP if statements inside of echo to create HTML option list

I have a HTML option list of 10 numbers. I want one of these options to be pre-selected based on a value retrieved from a database. If the retrieved value is 0 or FALSE then value=”0″ should be selected, if the retrieved value is 1 then value=”1″ should be selected, etc.

I have looked at: if block inside echo statement? however, I haven’t been able to fix my problem using its information.

Can I even go about it this way? I get a parse error on the first if statement call, my syntax is surely horribly wrong.

The Code:

JavaScript

Advertisement

Answer

You could break the process into two parts :

JavaScript

Build your selectmenu here:

JavaScript

see sample http://codepad.org/1O0PpQ7R

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement