View Single Post
Old 01-19-2006   #7 (permalink)
scrowler
code anyone?
 
scrowler's Avatar
 
Join Date: Feb 2004
Location: New Zealand
Posts: 590

Send a message via MSN to scrowler Send a message via Skype™ to scrowler
i think the first part of what you asked is already implemented in the tutorial, the second part is simply a matter of surrounding the element you wish to only appear if logged in with some php code:

Code:
<?php

if($_SESSION["s_username"]){

?>

<p>This will only appear if you are logged in!</p>

<?php } ?>
__________________
BioRUST Tutorials - the birthplace
scrowler is offline