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

If you use php long enough, you will want to concatenate php strings in echo and print statements, or as new strings.Here is a simple example showing how to combine simple strings into a new, larger string.

$my_first_variable=”.php”;
$my_second_variable=”filename”;
$my_new_third_variable= $my_first_variable.$my_second_variable;

echo $my_new_third_variable;

output:
filename.php