in reply to More with HTML:Template
If you had taken the time to check the error logs, or run your script thourgh perl -c (to check if it compiles), then you would have gotten a message starting like: Bareword found where operator expected at - line 10, near "$Create a" This error is a result of perl being confused since you typed $ where you probably meant #.
As a sidenote, I would reccommend you run your script with strict and warnings, which is likely to save you time in the future.
update: s/compiled/was made to compile/
|
|---|