Site Cloner PHP Script
Bargain Hunter PHP Script
Job Hunter PHP Script
Site Login and Access Control PHP Script

Crash Course PHP HERE Documents EOF

Using PHP HERE documents allows you to print or create custom, readable strings within EOF tags.

$var1 = “Hello”;
$var2 = “World”;
echo <<<EOF

Echoing heredoc. My variables and text output just fine. Variable 1 is $var1 and Variable 2 is $var2.

EOF;

$make_eof_variable = <<<EOF

Hey Variable 1 called $var1! I can add the variables within the EOF tags then output the variable anywhere on the page!

EOF;

echo $make_eof_variable;