Well if you are just trying to get that look, try this. You will need to adjust the css to your liking.
PHP Code
<?php
$id=$_GET['id'];
require_once 'library/config.php';
?>
<?php
if($_GET['action']=='ALL')
{
$qryall="select firstname,lastname,industry,position from ht_signup2 order by firstname ASC";
$resall=mysql_query($qryall);
while($res1all = mysql_fetch_object($resall))
{
$firstname = "$res1all->firstname";
$lastname = "$res1all->lastname";
$industry = "$res1all->industry";
$position = "$res1all->position";
echo "<div class='box1'>
<a class='profile1' href='view_profile.php?action=view'>$firstname $lastname</a>
<div class='view'>$industry/$position</div>
</div>";
}
}
?>
CSS Used
<style type='text/css' media='screen'><!--
.box1 { width: 150px; height: 30px; padding: 2px; }
.profile1 { color: #002f64; font-size: 10px; font-family: verdana; font-weight: bold; background-image: url(test_dot.jpg); background-repeat: no-repeat; background-position: left center; text-decoration: none; text-align: right; text-indent: 7px; padding-left: 8px; }
.dots { margin: 0; padding: 0; list-style-type: disc; }
.view { color: #8c8c8c; font-size: 10px; font-family: verdana; padding-left: 15px; }
--></style>
I also used an image for the dot on the left side which I uploaded.
Remember this will take care of the look of each listing. You will need to insert it into your code to work with the 3 sections and the paging system.