Code has been added to clipboard!

Displaying Variables in PHP Sections

Example
<?php session_start(); ?>
<!DOCTYPE html>
<html>
  <body>
  <?php
    print_r($_SESSION);
  ?>
  </body>
</html>