<?php
if($id == 1)
{
echo "Hello World!";
}
if($id == 2)
{
echo "Goodbye World!";
}
?>
i named this page, content.php, now according to this tutorial, if i put
content.php?id=1 i will get "hello world!"
and if i put content.php?id=2 i will get "goodbye world!"...
let me know if i have gone wrong anywhere! and if not y isnt it working!?
