alwaysinit Posted September 30, 2006 Share Posted September 30, 2006 Does anyone know of a tutorial that will run me through creating 1000's of members profiles dynamically using PHP and MYSQL?They won't all be created at once, just when a person joins. I lack the knowledge on how to do that. Link to comment https://forums.phpfreaks.com/topic/22559-looking-for-tutorial-or-info/ Share on other sites More sharing options...
ShibSta Posted September 30, 2006 Share Posted September 30, 2006 When they register you store their data in the database. Then when you link to their profile you use something like:view.php?id=213id 213 would be the User ID in the Auto Increment column in your database.You then use:$result = mysql_query("SELECT * FROM users WHERE id = '$_GET[id]'");$user = mysql_fetch_array($result);Then you can make the layout of your profile page and simple use the array $user to display user specific data.Lets say you have the following table columns: id, username, password, email, reg_dateIf you wanted to view the username you could use:<?php echo "Profile of $user[username]"; ?>If you need more help look on google for "PHP MySQL Login Tutorial" and "PHP MySQL Dynamic Table" Link to comment https://forums.phpfreaks.com/topic/22559-looking-for-tutorial-or-info/#findComment-101233 Share on other sites More sharing options...
alwaysinit Posted September 30, 2006 Author Share Posted September 30, 2006 awesome, thank you that really helps. I'll dig into itmuch respek Link to comment https://forums.phpfreaks.com/topic/22559-looking-for-tutorial-or-info/#findComment-101242 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.