S_SESSION variable (user role) not recognised

Session login and start, with Session variables declaration and store: Variable $_SESSION[‘estado’] works fine as it loads content if it is activo, and if not locates to other directory: But it does not seem to recognise $_SESSION[‘us_type’], as even when Database has correct fieldname and value *(us_type, 1)* php does not load under this conditional, locating user as if … Read more

phpMyAdmin Error: The mbstring extension is missing. Please check your PHP configuration

I have a problem running phpMyAdmin. When I try to access phpMyAdmin in my browser, I get the error message: “The mbstring extension is missing. Please check your PHP configuration.” I have already searched on the internet for possible solutions. According to that, I made some modifications in php.ini file. I uncommented the line “;extension=php_mbstring.dll” … Read more

PHP – Move a file into a different folder on the server

The rename function does this docs rename rename(‘image1.jpg’, ‘del/image1.jpg’); If you want to keep the existing file on the same place you should use copy docs copy copy(‘image1.jpg’, ‘del/image1.jpg’); If you want to move an uploaded file use the move_uploaded_file, although this is almost the same as rename this function also checks that the given file is a file that was … Read more