Jump to content

i cant get it to output


gotornot

Recommended Posts

Im trying to run a simple if command and this doesnt seem to work im trying to get it to hiighlight the option already selected in the db any ideas why?

function selected()
{
global $selectedno;
//for loop to loop through 10
$a = 11;
for ($i = 0; $i <10; $i++)
{
$a = --$a;
$num = $a;
if ($selectedno == $num)
{
$bash = ' selected="selected"';
}
echo '<option value="' . $a . '"' . $bash . '>' . $a . ' ' . $selectedno . ' </option>';
}
}

Link to comment
https://forums.phpfreaks.com/topic/174695-i-cant-get-it-to-output/
Share on other sites

1) Use code tags.

2) Why are you declaring '$selectedno' global?  I don't see where that variable is coming from.  If it's being read from the DB previously in the script then you should just pass it to the function as a parameter.

3) In your echo statement, you can use double quotes for the string and single quotes for the attributes so you don't have to keep concatenating to the string by breaking out of it.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.