hey i figured this out too. i used DWMX2004 to do it, i dont know if it is the best way so just tell me if it good or not...
CODE
<?php require_once('Connections/conn.php'); ?>
<?php
$colname_Recordset1 = "1";
if (isset($_GET['id'])) {
$colname_Recordset1 = (get_magic_quotes_gpc()) ? $_GET['id'] : addslashes($_GET['id']);
}
mysql_select_db($database_conn, $conn);
$query_Recordset1 = sprintf("SELECT * FROM ll_phones WHERE id = %s", $colname_Recordset1);
$Recordset1 = mysql_query($query_Recordset1, $conn) or die(mysql_error());
$row_Recordset1 = mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 = mysql_num_rows($Recordset1);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
</head>
<body>
Make: <?php echo $row_Recordset1['company']; ?>
<br>
Cell Phone Name: <?php echo $row_Recordset1['name']; ?><br>
<img src="<?php echo $row_Recordset1['image']; ?>"><br>
Specs:<br>
<?php echo $row_Recordset1['specs']; ?></body>
</html>
<?php
mysql_free_result($Recordset1);
?>
you can veiw it here.
http://www.bluntedbynature.com/landline/mobile.phpThis post has been edited by iamcenz: 1 Apr, 2005 - 09:15 AM