Re: [PHP-DB] Email validation

2010-06-29 Thread Richard Quadling
On 28 June 2010 15:42, gmail wrote: > Hello to you all! > > I'm facing a problem with a scrip that can validate a form witch accept only > as input email address. > > I have seen many scripts on the net and  were very interesting but I'm not > able to implement those scripts on my need. > >  I'm e

Re: [PHP-DB] Email Article, Print Article

2005-10-03 Thread Leo G. Divinagracia III
[EMAIL PROTECTED] wrote: Hello, I am running an article-based site, where I would like to add two buttons: print this article and email this article. Does anyone know where I could look to find out how to program this code into my article.php page? anothing this is to use CSS to st

Re: [PHP-DB] Email Article, Print Article

2005-09-30 Thread Tramelw
Thank you Bastian and Micah. I had no idea the concept was so straightforward. I guess I was close to making a mountain out of a molehill. Thanks again, E. Wonder

Re: [PHP-DB] Email Article, Print Article

2005-09-30 Thread Micah Stevens
No, but it's pretty straightforward, just have each link to another script along with a get variable that defines which article (assuming they're in a database or something) email_article.php?article=$articleID print_article.php?article=$articleID email_article.php: (pseudo code) print_arti

RE: [PHP-DB] Email Article, Print Article

2005-09-30 Thread Bastien Koert
Sure, not that hard...the usual trick with printing is to add this button To email it, I would add a button that has a link to the article (like the id reference no) and then with the onlclick open a small window with the form to add the email address(es). On submitting that little form, it p

Re: [PHP-DB] email question

2005-03-06 Thread anirudh dutt
<[EMAIL PROTECTED]> wrote: > I know something must be missing in my home setup, I hope I will learn that > later. However when I uploaded the files to my ISP, the email functionality > would work and emails went through with absolutely no problem. u need an MTA set up on the machine (eg. qmail,

Re: [PHP-DB] email question

2005-03-06 Thread Novice Learner
Hello, I had a very similar problem when I was trying to incorporate this functionality. I have my development system at home with Windows XP home edition, Apache server, and PHP5 and it would just not send the email from my local machine even after changing the settings in the ini file, I kno

Re: [PHP-DB] email question

2005-03-04 Thread Balwant Singh
sorry for again bothering you, thanks, yes you are right i am using SMTP. i have given my smtp server's ip and port number in my php.ini file but still i could not able to send the emails through my linux m/c. also i am not receiving any error. the mail goes but not reach to destination. after d

Re: [PHP-DB] email question

2005-03-03 Thread Brent Baisley
First, you don't use POP3 for sending emails, you use SMTP. POP3 is a retrieval mechanism, like IMAP. You actually don't need POP3 or IMAP to send and receive emails, you need it to read them with a typical mail client (i.e. Outlook). Postfix, Sendmail, etc., don't support POP3 and IMAP directl

Re: [PHP-DB] Email bouncer Program(s) - know any?

2003-09-30 Thread JeRRy
Note that even that isn't really very good because each domains is supposed to have a working postmaster@ account where any problem reports for the domain can go. If you just bounce any mail from the outside then you're not playing nice with the rest of the world. Just because other web se

Re: [PHP-DB] Email bouncer Program(s) - know any?

2003-09-30 Thread David T-G
Jerry -- This is neither a PHP nor PHP-DB question, even though you use php and mysql, but here's a reply anyway. ...and then JeRRy said... % % Hi, Hi! % % I run PHP and mysql on my site. I allow people to use % a PHP page to send me an email that is logged in the % mysql for logging reason

Re: [PHP-DB] Email Form

2003-09-16 Thread Philip O'Rourke
My Last post seems to have generated some sort of spam alert, so I'll attach the file. "Jacob A. Van Zanen" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > Hi, > > > Combine the two scripts > > Begin script > Accept the post variables > Insert them into the database > Mail them > E

Re: [PHP-DB] Email Form

2003-09-16 Thread Philip O'Rourke
Hi Jcck, here is an example of how I'm connecting to the database to complete a registration process. What I'm trying to get at is where to insert the relevant email code. Untitled Document Id: User_name: FName:

RE: [PHP-DB] Email Form

2003-09-16 Thread Jacob A. van Zanen
Hi, Combine the two scripts Begin script Accept the post variables Insert them into the database Mail them End script jack -Original Message- From: Philip O'Rourke [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 16, 2003 10:46 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] Email For

Re: [PHP-DB] Email with attachments - Dan's solution works!

2003-07-24 Thread Diana Cassady
Dan! Thanks so much! I plugged the code in and it worked like a charm on my very first test! Awesome. I spent hours on this yesterday and today. You saved me tears of defeat. Thanks again. Diana [EMAIL PROTECTED] "Will Work for Chocolate" http://www.vivaladata.com

Re: [PHP-DB] Email with attachments

2003-07-24 Thread Danbru
Hello!! Use this function... function sendmsg($to, $subject, $text, $cc, $from, $file, $type) { $content = fread(fopen($file,"r"),filesize($file)); $content = chunk_split(base64_encode($content)); $uid = strtoupper(md5(uniqid(time(; $name = basename($file);

Re: [PHP-DB] Email confirmation?

2003-06-11 Thread Bruno Gimenes Pereti
Keep the context of the email in a variable, add the details of the product in each loop. Then you can call mail() with the complete order information. PS. Don´t you think it´s better to query the db only once asking the details for all the products ordered? Bruno Pereti. - Original Message

Re: [PHP-DB] Email an attached file

2003-05-29 Thread Dan Brunner
4 PM, [EMAIL PROTECTED] wrote: I am storing the file on my server. -Original Message- From: Dan Brunner [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 28, 2003 2:42 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: [PHP-DB] Email an attached file Hello!! If your storing the f

RE: [PHP-DB] Email an attached file

2003-05-29 Thread Marie Osypian
I am storing the file on my server. -Original Message- From: Dan Brunner [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 28, 2003 2:42 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: [PHP-DB] Email an attached file Hello!! If your storing the file name, file type, in

Re: [PHP-DB] Email an attached file

2003-05-29 Thread Dan Brunner
Hello!! If your storing the file name, file type, in mysql; and are storing the files on a server. (Which you should be doing!!!) You could use this!! // $query = "SELECT * FROM Images WHERE Num = $num"; $result = mysql_query ($query, $db

Re: [PHP-DB] Email an attached file

2003-05-29 Thread jeffrey_n_Dyke
www.phpclasses.org is your best bet. there are plenty. personally i use this one..http://phpclasses.com/browse.html/package/32.html check out his site for examples. hth jd

RE: [PHP-DB] email form

2002-12-10 Thread Frank M. Kromann
Hi, When you use single quotes to define your strings php variables will not be replaced. Try $message = "...$customer.."; You will have to escape all double quotes used in the string (\") or use single quote. - Frank > This is where I am stuck, I can not get the variables to be placed in to

RE: [PHP-DB] email form

2002-12-10 Thread Ryan Holowaychuk
This is where I am stuck, I can not get the variables to be placed in to the email. /* message */ $message = ' Quote Request Customer: = "$customer" etc. I believe that I am not using the proper syntax for placing the customer field ($custome

RE: [PHP-DB] email form

2002-12-10 Thread Ryan Jameson (USA)
Try the mail function, you can get creative and use html as well. It's documented: http://www.php.net/manual/en/function.mail.php <>< Ryan -Original Message- From: Ryan Holowaychuk [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 10, 2002 4:23 PM To: [EMAIL PROTECTED] Subject: [PHP-DB]

RE: [PHP-DB] Email Encryption?

2002-11-20 Thread Gavin Amm
L PROTECTED]] Sent: Wednesday, 20 November 2002 1:01 AM To: 'Jeremy Wilson'; 'Jason Vincent'; [EMAIL PROTECTED] Subject: RE: [PHP-DB] Email Encryption? Hi All, I want to thank everyone for their suggestion. A short term solution we're simply going to remove the "use

RE: [PHP-DB] Email Encryption?

2002-11-19 Thread Aaron Wolski
November 16, 2002 1:08 PM To: 'Aaron Wolski'; 'Jason Vincent'; [EMAIL PROTECTED] Subject: RE: [PHP-DB] Email Encryption? $encrypted_string = md5(base64_encode($var.'secret key')); Pass the user name or password to $var and place text in to replace the words &#x

RE: [PHP-DB] Email Encryption?

2002-11-18 Thread Jeremy Wilson
27;Jason Vincent'; [EMAIL PROTECTED] Subject: RE: [PHP-DB] Email Encryption? Well. Its not what they want.. it what one of their clients want (very big corporation with very unrealistic security standards - you'd think they were NASA or something *grumble*) Their thought is that someone c

RE: [PHP-DB] Email Encryption?

2002-11-17 Thread Gavin Amm
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, Check out this link: http://www.pgpi.org/dev/ It is not exactly PHP material, but maybe if you wanted to contact them & ask them about supporting PHP you might get a response (i'd be interested if you get a responce, as i think having that fu

RE: [PHP-DB] Email Encryption?

2002-11-17 Thread Gavin Amm
:[EMAIL PROTECTED]] Sent: Saturday, 16 November 2002 7:12 AM To: Aaron Wolski Cc: 'Jason Vincent'; [EMAIL PROTECTED] Subject: RE: [PHP-DB] Email Encryption? At the time of the account setup, you'll have the unencrypted and encrypted password. Send the email before it gets encrypte

RE: [PHP-DB] Email Encryption?

2002-11-15 Thread Peter Beckman
crypted? > > Hense the email. > > Aaron > > -Original Message- > From: Peter Beckman [mailto:beckman@;purplecow.com] > Sent: November 15, 2002 12:35 PM > To: Aaron Wolski > Cc: 'Jason Vincent'; [EMAIL PROTECTED] > Subject: RE: [PHP-DB] Email Encr

RE: [PHP-DB] Email Encryption?

2002-11-15 Thread Jason Vincent
nt, Jason [BRAM:1334:EXCH]; [EMAIL PROTECTED] Subject: RE: [PHP-DB] Email Encryption? My client is the one doing the setup of accounts. How would the account holder know of his password before it got encrypted? Hense the email. Aaron -Original Message- From: Peter Beckman [mailto:be

RE: [PHP-DB] Email Encryption?

2002-11-15 Thread Aaron Wolski
Jason Vincent'; [EMAIL PROTECTED] Subject: RE: [PHP-DB] Email Encryption? Why not encrypt the password in the DB? If they lose their password, it cannot be sent to them. They chose it, so it doesn't need to be sent to them in their email. If they lose it, it is changed, and they have to

RE: [PHP-DB] Email Encryption?

2002-11-15 Thread Peter Beckman
t; Sent: November 15, 2002 11:42 AM > To: Aaron Wolski; [EMAIL PROTECTED] > Subject: RE: [PHP-DB] Email Encryption? > > Why email? If the Admin tool uses SSL, that is all you need. > Regards, > J > > -Original Message- > From: Aaron Wolski [mailto:aaronjw@;martekbiz.co

RE: [PHP-DB] Email Encryption?

2002-11-15 Thread Aaron Wolski
() of the app. Thanks again. Aaron -Original Message- From: Jason Vincent [mailto:jayv@;nortelnetworks.com] Sent: November 15, 2002 12:05 PM To: Aaron Wolski; [EMAIL PROTECTED] Subject: RE: [PHP-DB] Email Encryption? What I was getting it is, have the 'users'

RE: [PHP-DB] Email Encryption?

2002-11-15 Thread Jason Vincent
utchins, Richard'; [EMAIL PROTECTED] Subject: RE: [PHP-DB] Email Encryption? The user account is setup via the Admin util. The details are emailed to the account holder. Profile and Login information are contained within. Aaron -Original Message- From: Hutchins, Richard [mailto:Richa

RE: [PHP-DB] Email Encryption?

2002-11-15 Thread Hutchins, Richard
ot necessarily be the BEST solution, but I've seen it used in various places. > -Original Message- > From: Aaron Wolski [mailto:aaronjw@;martekbiz.com] > Sent: Friday, November 15, 2002 11:47 AM > To: 'Hutchins, Richard'; [EMAIL PROTECTED] > Subject: RE:

RE: [PHP-DB] Email Encryption?

2002-11-15 Thread Aaron Wolski
is supposed to simplify their lives not complicate :( Aaron -Original Message- From: Cal Evans [mailto:cal@;calevans.com] Sent: November 15, 2002 11:54 AM To: Aaron Wolski; 'Hutchins, Richard'; [EMAIL PROTECTED] Subject: RE: [PHP-DB] Email Encryption? Instead of emailing them

RE: [PHP-DB] Email Encryption?

2002-11-15 Thread Cal Evans
* -Original Message- From: Aaron Wolski [mailto:aaronjw@;martekbiz.com] Sent: Friday, November 15, 2002 10:47 AM To: 'Hutchins, Richard'; [EMAIL PROTECTED] Subject: RE: [PHP-DB] Email Encryption? The user account is setup via the Admin util. The details are emailed to the acco

RE: [PHP-DB] Email Encryption?

2002-11-15 Thread Aaron Wolski
PROTECTED] Subject: RE: [PHP-DB] Email Encryption? Can you explain how e-mail fits into the Admin solution? What is the e-mail used for? Setting up the accounts/passwords or sending the account/password to the user? > -Original Message- > From: Aaron Wolski [mailto:aaronjw@;martekb

RE: [PHP-DB] Email Encryption?

2002-11-15 Thread Aaron Wolski
PROTECTED] Subject: RE: [PHP-DB] Email Encryption? Why email? If the Admin tool uses SSL, that is all you need. Regards, J -Original Message- From: Aaron Wolski [mailto:aaronjw@;martekbiz.com] Sent: Friday, November 15, 2002 11:39 AM To: 'Aaron Wolski'; [EMAIL PROTECTED]

RE: [PHP-DB] Email Encryption?

2002-11-15 Thread Hutchins, Richard
9 AM > To: 'Aaron Wolski'; [EMAIL PROTECTED] > Subject: RE: [PHP-DB] Email Encryption? > > > Just thinking here.. > > > PGP is not an option as it would mean EACH user being setup would need > the company's public key to decrypt. Not possible as they

RE: [PHP-DB] Email Encryption?

2002-11-15 Thread Jason Vincent
Why email? If the Admin tool uses SSL, that is all you need. Regards, J -Original Message- From: Aaron Wolski [mailto:aaronjw@;martekbiz.com] Sent: Friday, November 15, 2002 11:39 AM To: 'Aaron Wolski'; [EMAIL PROTECTED] Subject: RE: [PHP-DB] Email Encryption? Just thi

RE: [PHP-DB] Email Encryption?

2002-11-15 Thread Aaron Wolski
Just thinking here.. PGP is not an option as it would mean EACH user being setup would need the company's public key to decrypt. Not possible as they setup a few hundred accounts each month. Hmm.. anything else? Argh :( Aaron -Original Message- From: Aaron Wolski [mailto:aaronjw@;mart

Re: [PHP-DB] Email and HTML Parser Library

2002-11-09 Thread Marco Tabini
Have you considered using the IMAP extension? That would solve pretty much all your problems with regards to "interpreting" the contents of a message. It's a bit slow, though. As for searching the hrefs and imgs, you can easily get away with a couple of regular expressions. Hope this helps. Mar

Re: [PHP-DB] email format: meeting request

2002-06-25 Thread szii
You're going to have to rip open the MS-specific format and handbuild (or script) your PHP to custom-build that format with the correct data fields. While it can be done, it's a good bit of time and energy. -Mike - Original Message - From: "Dib, Walid (MED, Stagiaire GEMS)" <[EMAIL P

RE: [PHP-DB] email format: meeting request

2002-06-25 Thread Cosby, Christopher
I'll dig up some old code I have lying around that did this (may take a while to find). In the meantime, I did it like this: 1) Create an event in Outlook. 2) File -> Save As... -> event.ics 3) event.ics is a plain text calendar file. The dates are a pain in the @$$ (DTSTART, DTEND), but the re

Re: [PHP-DB] email

2002-05-07 Thread Jeffrey_N_Dyke
everything you need to know. http://www.php.net/manual/en/ref.mail.php Hope this helps jeff "Natividad

RE: [PHP-DB] Email Validation

2002-03-08 Thread Kevin Bucknum
. -Original Message- From: cristi radulescu [mailto:[EMAIL PROTECTED]] Sent: Friday, March 08, 2002 7:13 AM To: [EMAIL PROTECTED] Subject: Re: [PHP-DB] Email Validation hi there, is there any way to check the existence of an e-mail address without sending an email? i mean not only DNS

Re: [PHP-DB] Email Validation

2002-03-08 Thread cristi radulescu
hi there, is there any way to check the existence of an e-mail address without sending an email? i mean not only DNS lookup, but also user validation? 10x, cristi radulescu http://translator.urbanxp.org http://www.urbanxp.org ML> On Fri, 2002-03-08 at 04:10, CrossWalkCentral wrote: >> How wou

Re: [PHP-DB] Email Validation

2002-03-08 Thread Markus Lervik
On Fri, 2002-03-08 at 04:10, CrossWalkCentral wrote: > How would I go about doing the DNS look up part? with checkdnsrr() I'd assume: checkdnsrr($host) "Searches DNS for records of type type corresponding to host. Returns TRUE if any records are found; returns FALSE if no records were found or

Re: [PHP-DB] Email Validation

2002-03-07 Thread CrossWalkCentral
How would I go about doing the DNS look up part? "Markus Lervik" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On Tuesday 12 February 2002 06:19, CrossWalkCentral wrote: > > > I am working on a form that I have in php and am looking for some advise > > on fo

Re: [PHP-DB] Email Validation

2002-02-11 Thread Markus Lervik
On Tuesday 12 February 2002 06:19, CrossWalkCentral wrote: > I am working on a form that I have in php and am looking for some advise > on form validation or specifically email address validation so i can > insure that some one has put in a properly formatted email address Well. something like

RE: [PHP-DB] Email Validation

2002-02-11 Thread Beau Lebens
have a look at the online annotated php manual under the regular expression functions, there are *stacks* of examples of using regexps to validate email patterns beau // -Original Message- // From: CrossWalkCentral [mailto:[EMAIL PROTECTED]] // Sent: Tuesday, 12 February 2002 12:20 PM //

Re: [PHP-DB] Email Processors Wanted Immediately!!!

2001-10-04 Thread Shooter
HAAHAHAHAHAHAHHAHAHH!!! does this seem like a spam mail or what! :) my suggestion. do not even touch this email. the person is wanting some more emails to spam. Neil - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, October 04, 2001 4:04 PM Subject: