Josh,
thanks alot for that pointer. i added the exception part into the
open command, and got an error output. It says that permission was
denied for writing to that file, so I am assuming this means that i
have to look into permissions and all with chmod and chown? Thanks
alot for your h
dan61psu wrote:
> ...
> <% if(%{$Request->{Form}})
> {
> my $filename="notes.txt"
>
> if(open(ADDFILE, ">> $filename"))
> {
> print (ADDFILE $Request->Form('name') );
> close(ADDFILE);
> }
> }
> %>
>
Try something more like this:
<%
if
Hi all,
i am a newbie with all this ASP and perl stuff, as I am only a
sophomore at Penn State working as an Intern.
anyway, i am trying to create a simple Asp page that when fields are
filled, and submit is clicked, the form info is posted to a flat text-
file in the same directory as the asp