maxso Posted December 24, 2008 Share Posted December 24, 2008 How do i create a profile page for my members that is like this. www.mysite.com/profile.php?user=kidhustler09 Link to comment https://forums.phpfreaks.com/topic/138264-profile-page/ Share on other sites More sharing options...
Jabop Posted December 24, 2008 Share Posted December 24, 2008 Right click the page, click 'View Source,' and copy the text. Paste that into your document and there you go. Link to comment https://forums.phpfreaks.com/topic/138264-profile-page/#findComment-722883 Share on other sites More sharing options...
maxso Posted December 24, 2008 Author Share Posted December 24, 2008 -.- Its not a real site its just the profile.php?user=kidhustler09 that im on about. Does anyone know where i can get started with this? Link to comment https://forums.phpfreaks.com/topic/138264-profile-page/#findComment-722889 Share on other sites More sharing options...
Jabop Posted December 24, 2008 Share Posted December 24, 2008 You'd start like this. <?php $Username=mysqli_real_escape_string($_GET['user']); $Query=mysqli_query("SELECT * FROM users WHERE Username='$Username' LIMIT 1"); // blah ?> Link to comment https://forums.phpfreaks.com/topic/138264-profile-page/#findComment-722890 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.