Search the Community
Showing results for tags 'accounts'.
-
Hello! I am new to PHP programming and am currently working on an account system. I have posted my work so far. From what I understand the problem is that when I log in the php script doesn`t acknowledge it and acts as if noone is logged in. Thanks in advace! Here are my files: users.sql : CREATE TABLE IF NOT EXISTS `users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(30) DEFAULT NULL, `password` varchar(255) DEFAULT NULL, `fullname` varchar(100) DEFAULT NULL, `location` varchar(200) DEFAULT NULL, `gender` varchar(10) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; auth_check.php common.php dashboard.php index.php login.php logout.php register.php auth_check.php
-
I'm working on a website, ive incorporated user accounts from http://php-login-script.com/ and now im trying to figure out how to enable photo uploading. I only want users with accounts to be able to upload photos, I want the photos they upload to be on their home page. Does anybody know how to do this? It would be a lot of help
- 2 replies
-
- php
- photo upload
-
(and 2 more)
Tagged with: