I dont think your understanding me! I dont want to learn it, i want a tutorial (script) for user profile.
it's not something you can just copy and paste.. it's a more complicated process and i'd suggest learning whatever you decide to use.
Here's an outline of what you'll need to know:
registration page:
-create database (probably in PHP MyAdmin or similar)
-create table for users in SQL
-connect to database on page
-PHP registration script on page that creates a new row in table "users"
profile page:
-connect to database
-display user's data (accessing it from table in database)
-use an html <form> to input data-- and then use PHP/SQL to Insert/Update this data in database
-re-display updated data.
Search google if you want a more in depth tutorial, but you're going to have to learn some PHP and SQL for this to work.