Okey so i got a problem when a user changes their profile picture. And if I with my silly mind understood correctly (what i think) this is due to my session being not updated... So this is my uploadfile where the user is able to upload a image file to the database, the image gets inserted and it works fine but even if the image is changed in the database i still see the old image when i insert it... Only when i logout and login im able to see the new picture,
- Is there some type of way i can update my session without the user being logged out in the proccess....?
- Is this due to my session being unupdated?
Don't know if it helps but here is my code
<?php
if(isset($_FILES['file']) )
{
move_uploaded_file($_FILES['file']['tmp_name'],'files/'.$_FILES['file']['name']);
session_start();
$username = $_SESSION['user'];
$userpic = 'files/'.$_FILES['file']['name'];
$id = $_SESSION['id'];
include ("connect.php");
$sql = $con->prepare('UPDATE users SET username=?, userpic=? WHERE id = ?');
$sql->bind_param("ssi",$username,$userpic,$id);
$sql->execute();
$sql->close();
$con->close();
echo '<div id = "check"> Your image was succesfully uploaded</div>';
}
else{
echo "no files";}
?>
And here is my login if that makes it easier as well:
<?php
include('connect.php');
$username = $_POST['username'];
$password = $_POST['password'];
$query = "SELECT * FROM users";
$result = $con->query($query);
while($row = $result->fetch_object())
{
if($username == $row->username)
{
$checkPassword = password_verify($password,$row->password);
if($checkPassword ){ // betyder om det är sant
session_start();
$_SESSION['loggedIn'] = true;
$_SESSION['user'] = $row->username;
$_SESSION['admin'] = $row->admin;
$_SESSION['userpic'] = $row->userpic;
$_SESSION['id'] = $row->id;
header("Location:music.php?success");
exit();
$fail = false;
}
}
else{
$fail = true;
if($fail){
echo "<script>
alert('You typed in wrong password or username, please try again mate!');
window.location.href='music.php';
</script>";
}
}
}?>
Any help more than appreciated but please try to keep it simple im stupid