bolo17

PHP Variables

Oct 17th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. PHP Variables
  2. Variables are "containers" for storing information.
  3. Creating (Declaring) PHP Variables
  4. Example
  5. <?php
  6. $txt = "Hello world!";
  7. $x = 5;
  8. $y = 10.5;
  9. ?>
  10. download file:http://bit.ly/31qw3gm
Add Comment
Please, Sign In to add comment