smti Posted March 31, 2008 Share Posted March 31, 2008 Hello, I need to check to see if a variable is set using: if (isset($_SESSION['login'])){ if the login variable is true, I need to output the rest of the HTML page like this one: <html> <head><title>test</title> </head> <body> <div id="blah> <p> </body> </html> Does anyone know of an easier way to output the page if the statement is true? (Rather than echoing each line and replacing double quotes for lines with say <div id="blah> with <div id='blah'/>) I hope there is an easier way! Echoing the lines and changing every double quote would be a pain. Also -- If the login variable is false, I need to redirect the user back to the login page. Any ideas would be greatly appreciated! Thanks, smti Link to comment https://forums.phpfreaks.com/topic/98738-html-output-php/ Share on other sites More sharing options...
pocobueno1388 Posted March 31, 2008 Share Posted March 31, 2008 <?php if (isset($_SESSION['login'])){ print<<<HERE ALL HTML CODE GOES HERE HERE; } else { header("Location: login.php"); } ?> Link to comment https://forums.phpfreaks.com/topic/98738-html-output-php/#findComment-505269 Share on other sites More sharing options...
sstangle73 Posted March 31, 2008 Share Posted March 31, 2008 <?php if (isset($_SESSION['login'])){ ?> HTML HERE <?php } else { ?> <meta http-equiv="refresh" content="0;url=http://website.com"> <?php } ?> Link to comment https://forums.phpfreaks.com/topic/98738-html-output-php/#findComment-505271 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.