Example with GOTO and LABEL statements

<?php     goto label_x;     echo "Hello...";          label_x:     echo " World";

Example with ucfirst() string converting function

<?php echo "<div style='font-family:Calibri;font-size:0.9em...

Example with number_format() number converting function

<?php echo "<div style='font-family:Calibri;font-size:0.9em...

Multiple examples of trim() function usage

<?php echo "<div style='font-family:Calibri;font-size:0.7em...

Example with substr_count() functions

<?php echo "<div style='font-family:Calibri;font-size:0.9em...

Example with strip_tags() functions

<?php     $tags_sample = "<p>;Paragraph here...</p><!--Comments here...--><a href='#'>Link here...</a>";    &...

Example of a multidimensional array

<?php     $multi_array = array     (     array ("name", "age", "title"),     array ("Judy&...

Example with is_array() array function

<?php echo "<div style='font-family:Calibri;font-size:1.0em...

Example with count() array function

<?php echo "<div style='font-family:Calibri;font-size:1.0em...

Example with unset() value of an array function

<?php echo "<div style='font-family:Calibri;font-size:1.0em...