Jump to content

User Customizeable Page


vgamemaster

Recommended Posts

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

textboxes linking to the db is what you need to change profiles :P

 

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.