HTML/PHP Persona Profile type

<?php $display_name = 'Add Your Name'; ?> <!DOCTYPE html> <html <head> <meta charset=utf-8> <title>PHP Exercises<?php echo $display_name;?> </title> </head> <body> <div id="wrap"> <section class="sidebar text-center"> <h1><?php echo $display_name; ?></h1> <p>Contact:<br /> <a href="mailto:">EMAIL</a></p> <hr /> <ul class="social"> <li><a href=""><span class="icon twitter"></span></a></li> </ul> <hr /> <p>Today: <?php echo date('D, d M Y'); ?></p> </section> <section class="main"> <h1>Dashboard</h1> <hr /> <h2>Daily Exercise</h2> </section> </div> <footer> <section class="footer text-center"> © <?php echo date('Y '); ?><?php echo $display_name ?> </footer> </section> </body> </html>
A Sample of a Persona Profile Dashboard for users

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.