RE: form user interface issue

2003-04-01 Thread Bill Burke
Maybe the button dosen't have focus when the enter key is hit. This added to your javascript may help function check_email_onkeypress() { if ("13" == window.event.keyCode) { form.submit(); } } Also, I usually use the name attribute for the form. Like If you do t

RE: The very un-useful 'premature end of script headers' error message

2003-03-29 Thread Bill Burke
Thanks for reminding me. I didn't even think of that. Wish I had before I opened this can of worms. -Original Message- From: Kevin Meltzer [mailto:[EMAIL PROTECTED] Sent: Friday, March 28, 2003 10:21 PM To: Bill Burke Cc: Randal L. Schwartz; [EMAIL PROTECTED]; Cool Hand Luke Subjec

RE: The very un-useful 'premature end of script headers' error message

2003-03-28 Thread Bill Burke
Well, this is gone to far. Some books say Perl some say PERL. I say potatoe, you say tamato. If the biggest issue we have is the caps the on a name then we're lucky. We all agree it's #!/usr/bin/perl or whatever path when scripting. Cheers. -Original Message- From: Randal L. Schwartz [mai

RE: The very un-useful 'premature end of script headers' error message

2003-03-28 Thread Bill Burke
nce but just had to throw that in there. :) -Original Message- From: Randal L. Schwartz [mailto:[EMAIL PROTECTED] Sent: Friday, March 28, 2003 11:18 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; Cool Hand Luke Subject: Re: The very un-useful 'premature end of script headers' error messa

RE: The very un-useful 'premature end of script headers' error message

2003-03-28 Thread Bill Burke
ay, March 29, 2003 12:18 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; Cool Hand Luke Subject: Re: The very un-useful 'premature end of script headers' error message >>>>> "Bill" == Bill Burke <[EMAIL PROTECTED]> writes: Bill> Thanks for the edification. Yo

RE: The very un-useful 'premature end of script headers' error message

2003-03-28 Thread Bill Burke
not your expertise. -Original Message- From: Randal L. Schwartz [mailto:[EMAIL PROTECTED] Sent: Friday, March 28, 2003 9:29 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; Cool Hand Luke Subject: Re: The very un-useful 'premature end of script headers' error message >>&g

RE: The very un-useful 'premature end of script headers' error message

2003-03-28 Thread Bill Burke
I added a chat room at my site http://www.speakerscorner.us . You are welcome there and we can discuss PERL in real time. Don't quit the user group though, you won't want to miss anything -Original Message- From: Randal L. Schwartz [mailto:[EMAIL PROTECTED] Sent: Friday, March 28, 2003 8:4

RE: help needed in frames with php

2003-03-16 Thread Bill Burke
are you using the target attribute? -Original Message- From: mel awaisi [mailto:[EMAIL PROTECTED] Sent: Saturday, March 15, 2003 6:10 PM To: [EMAIL PROTECTED] Subject: help needed in frames with php Hi, help needed in frames with php I have been trying to do this for sometime now, and

RE: email adress eq email adress?

2003-03-01 Thread Bill Burke
I used this, it may help you $email = $mailto; $email =~ s/\@/\\\@/; That 'escapes' the @ -Original Message- From: drieux [mailto:[EMAIL PROTECTED] Sent: Saturday, March 01, 2003 8:35 PM To: Ian Vännman Cc: [EMAIL PROTECTED] Subject: Re: email adress eq email adress? On Friday, Feb

RE: Escape Characters

2003-01-19 Thread Bill Burke
Thanks to both you and Craig for your help, I was able to get it working. Plus your responses have pointed to some areas I need to research. I'm sure be asking more in the future. bb -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Escape Characters

2003-01-18 Thread Bill Burke
I have used the "\", and the sendmail then worked. I was looking for something similar to the PHP addslashes(). Or maybe replace, like replace(strAdd, "@", "\@"). Thanks, bb -Original Message- From: Craig Dean [mailto:[EMAIL PROTECTED]] Sent: Saturday, January 18, 2003 6:16 PM To: Beginner

Escape Characters

2003-01-18 Thread Bill Burke
I'm trying to send mail to users returned from a database. The problem occurs when sendmail sees the "@" in the email address. Is there a function to escape reserved characters? Also, does sendmail allow sending as HTML? TIA bb -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,