DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Display Record Details
// Displays record details
<?
$sql = mysql_query("SELECT * FROM table WHERE this = '$this'") or die (mysql_error());
$myrow = mysql_fetch_array($sql);
?>
<?php echo $myrow["table_col1"] ?>
<?php echo $myrow["table_col2"] ?>





