02.1: Variables

How do we make our program useful for multiple things? In this lesson we learn about variables and some different data types.


https://www.youtube.com/watch?v=eKs5dsZsAfA





<?php

$a = 10;
$first_name = "Bob";

$b = $a * 2;

print "a: $a\n";
print "b: $b\n";
print "first_name: $first_name\n";

?>