Help for this page

Select Code to Download


  1. or download this
    print "Content-Type: text/html\n\n";
    print "
    ...
    <---Banner needs to go here--->
    Hi, welcome to the site....
    ";
    
  2. or download this
    $random = rnd($numofbanners);
    open IMAGE, "images/banner$random.gif";
    while (<IMAGE>) { print $_; }
    close IMAGE;