PHP - dev reference

0 votes
204 views
added Sep 24, 2019 in PHP by lcjr First Warrant Officer (11,830 points)
//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>

 

lazacode.org - Malaysia's programming knowledge sharing platform, where everyone can share their finding as reference to others.
...