Jump to content

How do I get this to show form in correct place?


VinceGledhill

Recommended Posts

Hi People.

 

This php loads all the airfield names into the correct place.

 

 <?php include("db_connect.php");
$users_sql = "SELECT * FROM users ORDER by username";
$users_query = mysql_query($users_sql) or die (mysql_error());
$rsUsers = mysql_fetch_assoc ($users_query);

  $id = ( !isset ( $id ) ) ? ( int ) $_GET [ "id" ] : $id ;

?>
<h2>Airfields By Name</h2>
<?php do {


?>

<li><a href="<? echo $rs["user_id"]; ?>"><?php echo $rsUsers ['username']; ?>	</a></li>

<?php	
} while ($rsUsers = mysql_fetch_assoc ($users_query));
?>

 

See http://www.airfieldcards.com/vg_temp/by_name.php

 

What do I need to add to the above php to load the actual airfield into results.php in order to show "results.php" in the section of the page where the map is currently shown. (known as "col1" in my css)

Link to comment
Share on other sites

Unless I did some typo or something, I think this is what you want:

$output = '';
while($rsUsers = mysql_fetch_assoc($users_query)){
$output .= '<li><a href="'.$rs['user_id'].'>'.$rsUsers['username'].'</a></li>';
}
echo $output;

Link to comment
Share on other sites

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.