I have a gallery of pics and when you click a pic you get sent to this page.(the one I pasted) Problem is I can't get the image to display. I know it's a GET function or img src="" but I can't get it right. This is my output.
Name: gewqrgf photo: uploads/EmptyTwo.png state: wfe
This page is a template for all photos when clicked. I want to drag the info of the pic selected and the comments that come along with it (not included yet) but could use some advice on that too. Does that make sense?
Thanks
- Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>What do you know about.......</title>
</head>
<body>
<?php
$hostname='.';
$username='.';
$password='.!';
$dbname='.';
$usertable='.';
mysql_connect('.', ''', ''!') or die(mysql_error());
mysql_select_db("'") or die(mysql_error());
$result = mysql_query("SELECT * FROM photo")
or die(mysql_error());
// store the record of the "example" table into $row
$row = mysql_fetch_array( $result );
echo "Name: ".$row['name'];
echo " photo: ".$row['photopath'];
echo " state: ".$row['state'];
?>
<?php
//$photopath = mysql_real_escape_string($_REQUEST['photpath']);
//$name = mysql_real_escape_string($_REQUEST['name']);
//$state = mysql_real_escape_string($_REQUEST['state']);
?>
</body>
</html>

