I've been toying with this for ages and can't seem to figure out why its happening - I'm following a "PhpAcademy" tutorial & have the following code (I'm simply using phpmyadmin to upload a user profile pic based on session): The problem is when I select the file & click "upload" the image file doesn't show up in phpmyadmin under 'imagelocation'. Any help would be greatly appreciated. Thanks!
THE 'UPLOADPROFILEPIC.PHP' FILE THAT SHOULD START THE UPLOAD PROCESS:
<?php
$_SESSION['username']="atestuser508";
$username = $_SESSION['username'];
echo "Welcome, ".$username."!<br/>";
if ($_POST['submit']) {
// get file attributes
$name = $_FILES['myfile']['name'];
$tmp_name = $_FILES['myfile']['tmp_name'];
if ($name)
{
// start the upload process
$location = "avatars/$name";
move_uploaded_file($tmp_name,$location);
$query = mysql_query("UPDATE members SET imagelocation='$location' WHERE username='$username'");
die("You've successfully uploaded your profile pic! <a href='login-home.php'>Return to your profile</a>");
}
else
die("Please select a file to upload!");
}
echo "Upload a profile picture:
<form action='uploadprofilepic.php' method='POST' enctype='multipart/form-data'>
File: <input type='file' name='myfile'><input type='submit' name='submit' value='Upload!'>
</form>
";
?>
THE 'PROFILE' PAGE THAT SHOULD ALLOW USER TO UPLOAD & THEN ALSO DISPLAY PROFILE PIC:
<?php include("uploadprofilepic.php"); ?>
<?php
$query = mysql_query("SELECT * FROM members WHERE username='$username'");
if (mysql_num_rows($query)==0)
die("User not found!");
else {
$row = mysql_fetch_assoc($query);
$location = $row['imagelocation'];
echo "<img src='$location'>";
}
?>