![]() |
|
Tutorial [PHP] Tutorial Three Strings and Integers - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: PHP (https://sinister.li/Forum-PHP) +--- Thread: Tutorial [PHP] Tutorial Three Strings and Integers (/Thread-Tutorial-PHP-Tutorial-Three-Strings-and-Integers) |
[PHP] Tutorial Three Strings and Integers - KyleFYI - 02-21-2013 Well, strings and integers are very useful while coding. They will hold data for you. Like so. PHP Code: <?PHP
$string = "Kyle FYI";
echo $string;
?>This will echo "Kyle FYI". You can also hold numbers not just text. This is very useful thing to know. When I am coding, I use strings in every script I make. I don't see you coding without them really. Note: If you need any help and I have not yet made a tutorial for it please visit php.net. |