How to display string?
echo
print
print_r
$array1 = array("test", "character", "code"); sort($array1); print_r($array1);
What will show?
Nothing
Array("0" => "Test")
Array("0" => "code")