Are You Online?
Blogs, Forum, Music, Video, Job Postings, Community Website

Simpe PHP Tutorial for Beginners

Simpe PHP Tutorial for Beginners

A very Simple tutorial.

This is how to make your php to work.

Just Copy and paste the code below

<?php

//Assign a String variable

$variable = "Are You Online ?";

//Iterate and assign a variable

for ($x=1; $x <= 10; $x++) {
$output .= $x . " " . $variable;
}

echo $output;

?>