Save yourself a major headache and use a perl script to send the mail. It will hide the receiver's email address completely removing any concern at all with bots or compliance and you can set the priority the email comes to you or the receiver based on the topic or the receiver's choice. Quite a...
The code is not writing the correct value:
open(OUTF,">>card1.out") or dienice("Couldn't open car.out for writing: $!");
$amount = "$16"; ## has the value
print OUTF "$FORM{'amount'}\n"; ## has no value
close(OUTF);
should be:
$amount =...
Have never experienced this before: A set of scripts written on an Alabanza server I use for building such things when installed on a 800hosting server provides nothing but premature end of script headers warning!
all paths are correct (config single file changed) and no changes made to content...
This was posted in the CGI forum and has led to an Apache situation with perl???
Scripts that had been working just fine on both a build server and a test server are now installed on the primary box, with ExecCGI granted. Scripts work if they are cut off with an exit before doing any if/then...
Call the cgi you want displayed in the src= tag of the iframe and it will be dynamic. If you want to rotate which one is displayed you will need a script to manage which one is placed in the src= tag.
Use an iframe element. Pull them in to that box and it will display properly in this century's browsers. With iframe you can remove the outline and make it seamless.
Ok here we are: Scripts that had been working just fine on both a build server and a test server are now installed on the primary box, with ExecCGI granted. Scripts work if they are cut with with an exit before doing any if/then functions. If no cut off is made the scripts never load and hang...
Makes sense (told you it wasn't my language of choice)
I've also tried
<img src=[script-url]> and still nothing.
Any ideas for a miraculous solution?
(Thank you for the response)
Have been toying with calling a perl script from a different server using this:
<script language=javascript src="[script-url]"></script>
And it responds with nothing.
So is my perl script screwed up? (it works fine by itself)
or am I missing something?
FYI: Javascript is NOT my...
Situation:
1 Master button (type=image) (call this 'on')
3 Slave buttons.. (type=image) (call them 1,2,3)
When on is clicked it allows
1 2 and 3 to be clicked
uinless 'on' is clicked 1 2 and 3 cannot be clicked
now... if I had one simple clue as to how
to pull this off ....
buttons can be...
I am attempting to do the following.
Detect the keys pressed on the keyboard
Add the key pressed in Key Code to a hidden form field in order...
submit the form to a perl script every 10 seconds including the entire form field's contents of all keys pressed during that time...
I can detect...
Thank you very much. Was hoping to eliminate the major problem by searching for email addresses which would not be duplicated. The method you used is far superior to what I came up with so thank you I will indeed use it.
OK I haven't lost it completely.
Sorry for posting this so quickly.
The answer was staring me in the face.
if ($alreadyfound =~ /$username/)
} else {
$totalplayershistory++;
}
$alreadyfound = "$username,$alreadyfound";
Sorry for taking up the space.
I have an array split by pipes sitting in @playerhistory , fields are $username,$enginenumber,$date,$time,$gamenumber,
and $rollnumber.
The total count of all entries is $totalrolls++
I can't nest a comparative function to shrink the list to a unique count of individual users instead of the...
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.