in reply to Help with my Crawler
You have a "smart quote" where Perl does not expect one. Get a decent editor and only ever use ASCII characters in your code:
print (“TCP Connection Success. \n"); # wrong print ("TCP Connection Success. \n"); # right
Also, Perl tells you the line number and column where it found the error. What part of that information did you have problems with?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Help with my Crawler
by Anonymous Monk on Mar 08, 2011 at 11:21 UTC | |
by Corion (Patriarch) on Mar 08, 2011 at 11:24 UTC |