//print_r() displays information about a variable in a way that’s readable by humans. <pre> <?php print_r ($url); ?> </pre> // print more variable <pre> <?php print_r ($projectState . $projectLocation); ?> </pre>