Name: Anonymous 2010-08-04 20:43
So, I was watching a movie and apparently it was made completely out of CGI. So I thought, hey perl is CGI! So I made "file.cgi" but I didn't see any movie. How can I get it to work?
<?php
$john = "Edward Norton";
$tony = "Rod Stewert";
$martha = "Angelina Jolie";
print "<b>"$john"</b>: Wassup, Tony?!";
print "<b>"$tony"</b>: Hold on broseph, I'm banging martha.";
print "<b>"$martha"</b>: OOOhh!";
?>