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)

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.