Jump to content

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.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.