i'm a PHP newbie and I'm assigned to an mission of creating a blog with some elements like Yahoo blog! : login -> home -> my page, my blog, my profile, my friend....
I'm now supposed to write the 'view profile page'
I wrote the login page using session and I'm now stuck. can anyone help me to finish the profile code which shows name, birthday, adress and so on of signed in member using session in form
[code=php]
<?php
echo "hello, you're logging in as". $_SESSION['username'];
echo '<br>your profile:'
?>
[/code]
WHAT'S THEN? :|
I'm now supposed to write the 'view profile page'
I wrote the login page using session and I'm now stuck. can anyone help me to finish the profile code which shows name, birthday, adress and so on of signed in member using session in form
[code=php]
<?php
echo "hello, you're logging in as". $_SESSION['username'];
echo '<br>your profile:'
?>
[/code]
WHAT'S THEN? :|
Comment