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
[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
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
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
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
<[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,
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
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
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
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
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
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
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:
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
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
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);
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
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
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
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
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
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
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
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]
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
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
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
-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
:[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
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
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
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
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
() 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'
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
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:
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
*
-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
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
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]
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
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
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
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
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
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
everything you need to know.
http://www.php.net/manual/en/ref.mail.php
Hope this helps
jeff
"Natividad
.
-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
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
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
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
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
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
//
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:
54 matches
Mail list logo