PHP String
One of the simple data types in PHP is strings. Strings must be enclosed in quotes (single or double - it doesn't matter). See the example:
<?php
'abcde', "abcde";
?>
One of the simple data types in PHP is strings. Strings must be enclosed in quotes (single or double - it doesn't matter). See the example:
<?php
'abcde', "abcde";
?>