Okay What im looking to do return all the data a user has already submitted on one page. So basicly they are already loged in so I should know there email address and I just want to pull all the mysql data and display all the data under that email address
So basicly mysql has email as first colum and then and bunch of junk and I want to display all the junk if the email colume equals the same email that they are loged in as
here is my code im on the right track but not quite there
<?php
session_start();
include 'config.php';
$_SESSION['Email']=$Email;
mysql_select_db("DATABASEJUNK") or die ("Couldn't find database.");
$query = mysql_query("SELECT * FROM DATABASELIST WHERE Email='$Email'");
$numrows = mysql_num_rows($query);
while ($row = mysql_fetch_assoc($query))
echo $row['Url'];
?>