Jump to content

drop down preselect


onthespot

Recommended Posts

Ok if you could help me with this, i would be grateful.

So I have a dropdown menu on my messaging system with all the site users.

I want to be able to click a link on the user profile called "PM Me".

Then that bring up the send message page but with the username of the users profile you are messaging already selected on the drop down.

 

This would also be useful for replying to messages sent to you.

 

Could any offer some help on this, I really don't know where to start. Thankyou

Link to comment
Share on other sites

$selectUsername = !empty($_GET['username']) ? $_GET['username'] : null;
..
$query = 'SELECT id, username FROM users';
$result = mysql_query($query, $db); // $db = mysql_connect()
$htmlSelect = '<select name="users">';
while (list($id, $username) = mysql_fetch_array($result, MYSQL_NUM)) {
    $selected = !strcmp($username, $selectUsername) ? ' selected="selected"' : '';
    $htmlSelect .= "<option value=\"$id\"$selected>$username</option>";
}
$htmlSelect .= '</select>';

 

<form action="" method="post">
   <label>Users: <?php print $htmlSelect; ?></label>
</form>

Link to comment
Share on other sites

  • 2 weeks later...
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.