Re: Customize link

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Thu, May 5, 2011 at 18:10, Michael Simiyu <simiyu.michael@xxxxxxxxx> wrote:
>
> So i guess my question is how to configure a meu item in a drop down to be
> automatically selected in a link...

<?php

$cat_ids = array(1,3,5,7,13,15,24,36,81,92);

echo '<select name="categories">'.PHP_EOL;
foreach ($cat_ids as $cid) {

    echo '  <option value="'.$cid.'"';

    if (isset($_GET['cat_id']) && $_GET['cat_id'] == $cid) {
        echo ' selected="selected"';
    }

    echo '">'.$cid.'</option>'.PHP_EOL;
}
echo '</select>'.PHP_EOL;

?>
-- 
</Daniel P. Brown>
Network Infrastructure Manager
http://www.php.net/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux