Jump to content

Phil

Members
  • Posts

    2
  • Joined

  • Last visited

Phil's Achievements

Newbie

Newbie (1/14)

  • First Post
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. I think that the simplest solution to the problem is to look at the source code of the page in question then try it on your own site. Here, (http://www.thinkdigitally.com/) the code in question was: <BODY BGCOLOR=#666666 LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0> But remember, not all browsers will display the code in the same way. There are folks out there using some VERY OLD browsers and it ain't because they're stupid.
  2. Here's the script: What you left out -- which is essential -- is the line: print "Content-type: text/html; (The "\n\n" are simply line feeds. #!/usr/bin/perl print "Content-type: text/html\n\n"; print "<html>"; print "<head></head>"; print "<body>Hello world!!</body>"; print "</html>"; exit;
×
×
  • Create New...