Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Re: Document Contain No Data

by HamNRye (Monk)
on Nov 05, 2002 at 23:56 UTC ( [id://210610]=note: print w/replies, xml ) Need Help??


in reply to Re: Document Contain No Data
in thread Document Contain No Data

POST CODE!!!!!!!!!

Most likley you are not supplying the value of one of your variables.

This is where good debugging techniques come in handy. Litter your script with some print "Passed 1st loop\n"; type debugging messages and see how far the program gets.

ANYTHING that gets values from a command line script should check for value....

$foo = `dir C:\bar\`; unless ($foo ne "") {die("Could not get directory listing\n");} @foobar = split '', $foo;

Oh, yeah, post yer code!!!!

And do you have warnings and Strict turned on??

#! /usr/bin/perl -w use Strict;

Are you using CGI.pm?? What about

$co = new CGI; print $co->header, $co->start_html(-title=>'Retail Ad Usage');
~Hammy

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://210610]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (6)
As of 2024-04-23 18:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found