I am getting no where with this, I am not getting any output from my echo ,can someone help, thanks in advance...singhy
code below...
  $strSQL = "SELECT * FROM <tablename>  WHERE id='" . $_GET["serviceName"] . "'";
    $rs = mysql_query($strSQL);
while($row = mysql_fetch_array($rs)){
       echo "<dt>Name:</dt><dd>" . $row["serviceType"] . " " . $row["serviceName"] . "</dd>";
 echo "<dt>Phone:</dt><dd>" . $row["Phone"] . "</dd>";
 echo "<dt>Birthdate:</dt><dd>" . $row["BirthDate"] . "</dd>";
}
    // Close the database connection
mysql_close();
?>
    <p><a href="li.php">Return to the list</a></p>
    </body>
   </html>
can someone tell me where i am going wrong, ive tried various options, thanks in advance, singhy
 
     
     
    