carmelo Posted July 12, 2006 Share Posted July 12, 2006 I am very new at PHP and I want to code my first registration page, with a database for the users...Do you guys know some tutorials for this stuff something for beginners...im using 'localhost' not a webserver...cause most of the tutorials in here are for webhost users.Thanks in advance! Quote Link to comment https://forums.phpfreaks.com/topic/14379-phpmyadmin-help/ Share on other sites More sharing options...
brown2005 Posted July 12, 2006 Share Posted July 12, 2006 http://www.phpfreaks.com/tutorials/65/0.php Quote Link to comment https://forums.phpfreaks.com/topic/14379-phpmyadmin-help/#findComment-56722 Share on other sites More sharing options...
carmelo Posted July 12, 2006 Author Share Posted July 12, 2006 Thanks for the tutorial but im looking for something small...this is just a school project..i need a userlog-in system that records username and password on a database and let the registered users log-in...So that would be a:a) user registration pageb) user login page Quote Link to comment https://forums.phpfreaks.com/topic/14379-phpmyadmin-help/#findComment-56850 Share on other sites More sharing options...
brown2005 Posted July 12, 2006 Share Posted July 12, 2006 want me to do one for you...as i dont know of any Quote Link to comment https://forums.phpfreaks.com/topic/14379-phpmyadmin-help/#findComment-56890 Share on other sites More sharing options...
Buyocat Posted July 12, 2006 Share Posted July 12, 2006 What exactly is the issue you are having with PHPmyAdmin? To install it just put it in your local server directory and follow the instructions. Mostly you just need to give it the right username and password for you local MySQL. As for creating a user system that is trivial if you just want something simple and quick. You'll want to go to php.net and look up the functions...// mysql stuffmysql_connectmysql_querymysql_fetch_array// session stuffsession_start$_SESSION (not a function but an array that is used to store session data)// data handling stuffstrip_slashesadd_slashesissetemptystrlen$_POST (again not a function but an array that stores post data -- from forms)$_GET (ditto but this time from URLs generally)// printingprintechoprint_r (for debugging mostly)var_dump (ditto) Quote Link to comment https://forums.phpfreaks.com/topic/14379-phpmyadmin-help/#findComment-56916 Share on other sites More sharing options...
carmelo Posted July 13, 2006 Author Share Posted July 13, 2006 Thanks... ;D Quote Link to comment https://forums.phpfreaks.com/topic/14379-phpmyadmin-help/#findComment-57569 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.