Wildhalf Posted August 20, 2006 Share Posted August 20, 2006 I'm Complete Newbie to PHP but understand itJust a short question... Could someone give show me a small bit of html code in a php file..What i am doing, im editing a login script that i justwrote thanks to a tutorial from here on phpfreaks, and want to edit the members area... Here is the code for the members area at the min[code]<?phpsession_start();echo "Welcome ". $_SESSION['first_name'] ." ". $_SESSION['last_name'] ."! You have made it to the members area!<br /><br />";echo "Your user level is ". $_SESSION['user_level']." which enables you access to the following areas: <br />";if($_SESSION['user_level'] == 0){ echo "- Forums<br />- Chat Room<br />";}if($_SESSION['user_level'] == 1){ echo "- Forums<br />- Chat Room<br />- Moderator Area<br />";}echo "<br /><a href=logout.php>Logout</a>";?>[/code]Also I have multiple pages that will be linked to this members area, how will i keep them private???Thank you for all your helpKieron Link to comment https://forums.phpfreaks.com/topic/18122-php-html/ Share on other sites More sharing options...
Carter7 Posted August 26, 2006 Share Posted August 26, 2006 Could you please explain more, i do not uinderstand what you're asking for, if you're asking how do you write, say a html table into a php file there are 2 ways, either end the php by using ?> or simple use an echo, like shown below:echo "<html></html>"; Link to comment https://forums.phpfreaks.com/topic/18122-php-html/#findComment-80520 Share on other sites More sharing options...
Wildhalf Posted August 28, 2006 Author Share Posted August 28, 2006 Carter,Sorry it took so long to get back to you but i sorted the problem.... I figured out a better way to do what i wanted....thanks for trying to help Link to comment https://forums.phpfreaks.com/topic/18122-php-html/#findComment-81906 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.