Using Strings in PHP Tutorial
Using Strings in PHP can be very tricky, specially when you have messy or imcomplete code. First, you’ll need to start your PHP tags like so: <?php #this starts the script //these are the variables youll need to create for this example $first_name = ‘John’; $last_name = ‘Doe’; $book = ‘Ice Cream Monster’; //this tutorial will use the [...]
