ok im trying to make it so when you want to view the details of something you click on it and it will show everything doing something like view.php?sid=13 i have this code, and i thought this is how you do it but i guess not.
mysql_select_db($database_conn, $conn);
$query_scripts = "SELECT * FROM scripts WHERE scripts.s_id = $sid";
$scripts = mysql_query($query_scripts, $conn) or die(mysql_error());
$row_scripts = mysql_fetch_assoc($scripts);
$totalRows_scripts = mysql_num_rows($scripts);
can you help me out.