Hi,
I have a form which submits some variables for processing to a HTML file. Here's how the script handles them:
# Split the name-value pairs
@pairs = split(/&/, $buffer);
foreach $pair (@pairs){
($name, $value) = split(/=/, $pair);
$value =~ tr/+/ /;
$value =~...
Hello,
I've got a script that let's me enter information about a report which updates every hour. I have the information saved to a HTML file (it gets written over on each entry as it should... it's used for a passdown between workshifts).
What I'm trying to do now is save with that...
Hello,
I am new to CGI. I've been able to configure a guestbook script to work fine... Now I am trying to modify it (or another script) to take form data and output the results to a specific HTML file. I'm not sure how to do this.
It's likely a simple solution (but I'm a simple guy). I...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.