|
Hi there, I hope I can be of a little help.
Firstly under php code, you have a perl source code, I am not sure if this works.
Secondly, the first line in the perl document has an absolut path to the C: and I think this should be "#!/usr/bin/perl -wT" as this won´t be running locally, but on a server.
You also have "<FORM ACTION="http://localhost/cgi-bin/getlog.cgi" METHOD="post">" this address is absolute and you should stay away from absolut url´s as this will only work on your localhost and if you use it anywhere else, you will have to change the code.
try using "<FORM NAME="newGBentry" ACTION="/getlog.cgi" METHOD="post">"
Names are a good thing to use for forms, especially when you have more than on form in a document.
I hope this will help you a little bit, just wanted to add my two cents.
Gook luck.
__________________
I think, therefore I am..... I think.
|