vgamemaster Posted June 30, 2009 Share Posted June 30, 2009 Hey, Okay so I am looking for some direction concerning what I want to do. What I want, is when a user registers for my site, they get their own customizeable page. I want them to be able to edit this page from a template or something. I also would like other user who register for my site, to be able to look at other user's "pages". Does anybody have a link to point me in the right direction to achieve this? Thanks Link to comment https://forums.phpfreaks.com/topic/164295-user-customizeable-page/ Share on other sites More sharing options...
runnerjp Posted June 30, 2009 Share Posted June 30, 2009 textboxes linking to the db is what you need to change profiles http://www.w3schools.com/php/php_forms.asp.. where the usuall text is just add the textbox there echoing the current text into the textbox. also other users pages will be by there id... so something like $getuserprofile = mysql_fetch_assoc(mysql_query("SELECT * from profile where ID='".$getuser['ID']."'"));// grabbing id from ur such as www.profile.com?id=1 then it would be just echo $getuserprofile['gender']; ect ect Link to comment https://forums.phpfreaks.com/topic/164295-user-customizeable-page/#findComment-866684 Share on other sites More sharing options...
vgamemaster Posted June 30, 2009 Author Share Posted June 30, 2009 Thanks for the quick reply, but I think the link you posted is broken Link to comment https://forums.phpfreaks.com/topic/164295-user-customizeable-page/#findComment-866690 Share on other sites More sharing options...
runnerjp Posted June 30, 2009 Share Posted June 30, 2009 opps here http://www.w3schools.com/php/php_forms.asp Link to comment https://forums.phpfreaks.com/topic/164295-user-customizeable-page/#findComment-866747 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.