AlternativeNick 0 Report post Posted August 27, 2006 hey, i really appreciate this xD i was looking for something that i could tear apart with examples of how ot use mysql and php together. im really glad for this, because mysql looks like about the beswt way to store anything xD anyways, thanks and hope your skills take you far! Share this post Link to post Share on other sites
RuneMan 0 Report post Posted August 27, 2006 nice codes... thanks man!!!!!all i've got is something called simple login or summat.I'm going to use this in my website. Share this post Link to post Share on other sites
Kay__x 0 Report post Posted March 9, 2007 It doesn't work for me! =/ When I go to test out the register I fill in the info, hit submit and the feilds go blank. Share this post Link to post Share on other sites
Imtay22 0 Report post Posted March 9, 2007 This is really nice just what I was looking for for about 5 months! Thank You for this awsome tutorial! Share this post Link to post Share on other sites
Wargasmic 0 Report post Posted March 15, 2007 nice tutorial, I've been trying to find out how to do this for ages.Thanks, Share this post Link to post Share on other sites
Ridwan sameer 0 Report post Posted April 27, 2007 I just have one question.Where do i paste all those files? Do i paste in file manager? if so which file? do i paste it in mysql? please tell me this fully on where to keep these? i understand that i have to make seperate files but wheredo i keep them? if i foundout it would be great. i love your tutorial dude.Thanks. this was the most easy to understand one really and this one is completePLease tell em thsi andThank you Share this post Link to post Share on other sites
Forbez 0 Report post Posted April 27, 2007 Wow well done, that must of taken a while to code. Share this post Link to post Share on other sites
kery 0 Report post Posted April 27, 2007 hmm klind of strange to miss out conn.php its like a vital part of the login system. I am wondering whether this person actually coded it him self or stole it from some one else cos if he coded it him self he woluld not have left out conn.php. Just a thought thats all.Yeah good script for beginners could have doen without the errors cos I got conn.php errors too . good base for a login script thou, at least now I wont forget any of the code requiired... Share this post Link to post Share on other sites
Mistikpso 0 Report post Posted August 9, 2007 (edited) Hey guys (and albus)i re-wrote the code for the mysql configuration so that it actually works :PEdit: could an admin replace this code wiith the code on the first page, becuase this code ACTUALLY works :PConn.php <?//change these values with the data you have$host = "localhost";$user = "your_username";$pass = "your_pass";$db = "your_db";// this attempts a connection to the mysql databse$ms = mysql_pconnect($host, $user, $pass);if ( !$ms ){echo "Error connecting to database.\n"; //if your login fails}mysql_select_db($db); //mysql check - gl guys -mistikpso-?> Edited August 9, 2007 by Mistikpso (see edit history) Share this post Link to post Share on other sites
chewy123 0 Report post Posted August 10, 2007 Nice, I might use this code once I got my account. :PI like. Share this post Link to post Share on other sites
musicfreak 0 Report post Posted August 12, 2007 ok...so wheres the member page code? the code is there but i dont See what the options or changes are Share this post Link to post Share on other sites
craptv 0 Report post Posted August 15, 2007 (edited) Sorry, I am very very new with PHP and mysql. I'm having a bit of difficulty with the script. This notice keeps on coming up at the top of some of my pages. I have tried the edited version of conn.php, that kind of worked. Also, everytime I press Log-In! or Submit! the fields all go blank.$host = 'mysql'; $user = '4138_craptv' $pass = 'flash'; $db = '4138_craptv'; mysql_connect($host,$user,$pass) or die ("Database is unavaiable. Please try again later."); mysql_select_db($db) or die ("Database is unavaiable. Please try again later."); I don't think my table is correct. Can somebody give me the mysql code needed to make the original tutorial table.I would be most grateful.Thanks In Advance. Edited August 15, 2007 by craptv (see edit history) Share this post Link to post Share on other sites
odomike 0 Report post Posted August 15, 2007 looks great man. I havent tested this yet 'cos I havent installed my Windows Server 2008 Beta 3 yet. Just Finished the download. Will get back to you guys after the installation and necessary database server installations. Share this post Link to post Share on other sites
Chyu 0 Report post Posted August 20, 2007 This didnt work for me something wrong with conn.php lots of people are saying you copied it.......I get this mysql server error or something... :XD: Share this post Link to post Share on other sites
delivi 0 Report post Posted August 20, 2007 thanks a lot for sharing this great tutorial for getting a full login system for my site, I think this script will prevent all the SQL injection threats as it strips off the input values from code. Share this post Link to post Share on other sites