RE: [PHP-DB] MS Access, FoxPro and PHP

2003-12-02 Thread howard gramer
Robert,

I can not help directly but until you get a helpful response here you could 
try a Google Groups search.

http://groups.google.com/groups?safe=imagesie=UTF-8oe=UTF-8as_ugroup=*access*as_usubject=php%20odbclr=hl=en

Go to http://groups.google.com
click on Advanced search
for Newsgroup enter: *access*
Subject enter: php odbc
howard grämer
 New York City
  [EMAIL PROTECTED]




From: Robert Twitty [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: [PHP-DB] MS Access, FoxPro and PHP
Date: Tue, 2 Dec 2003 09:55:08 -0500 (EST)
Is anyone using MS Access, FoxPro or any other file-based database via
ODBC with PHP?
-- bob
_
Share holiday photos without swamping your Inbox.  Get MSN Extra Storage 
now!  http://join.msn.com/?PAGE=features/es

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP-DB] Re: send email

2003-11-25 Thread howard gramer
I am in the same boat,
( I posted a couple of days ago Subject: Re: [PHP-DB] Send formmail data to 
Email and Database ), not knowing where to put the Mail() into my own code.  
I am working on it but no success yet.

But, my real question in this topic; with formmail.pl using Sendmail your 
able to use recipients_alias = [EMAIL PROTECTED] inside of the 
FormMail.conf file.  So this means you can hide the email address in the 
configuration file without it being seen in the page source.

How do you accomplish the same with Mail()? i.e. hiding the email

howard grämer
 New York City
  [EMAIL PROTECTED]

From: Kim Steinhaug [EMAIL PROTECTED]
Reply-To: Kim Steinhaug [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: [PHP-DB] Re: send email
Date: Tue, 25 Nov 2003 19:57:44 +0100
Well this shouldnt be any problem. I suspect you dont
know how to set up the email routine since your asking.
All you need to do is insert a sendmail script together with the
update of the mySQL database. You could use PHPs internal
functions for this, but Ill recommend you using PHPmailer which
is heavily documentet with tons of examples on how to use.
The PHPmailer is located at sourceforge and you should find it
right away. It has to be the most elegant way I know of sending
emails from PHP scripts.
And as a bonus, the PHPmailer is under active development so
you will most likely never run into problems using it, :)
--
Kim Steinhaug
---
There are 10 types of people when it comes to binary numbers:
those who understand them, and those who don't.
---
Redhat [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 I have created a simple form that dumps input information into a mysql
 database.  The person that I created it for said it would be nice if it
 would also notify him by email that an entry was added to the database.
 I have no idea where to begin with that - any ideas?
 thanks,
 DF
_
online games and music with a high-speed Internet connection!  Prices start 
at less than $1 a day average.  https://broadband.msn.com (Prices may vary 
by service area.)

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP-DB] Re: Send formmail data to Email and Database

2003-11-24 Thread howard gramer
   fill out the form below and we'll be sure to answer as quick as 
possible./p

	  form action=http://www.friendlyhousebuyers.com/cgi-sys/formmail.pl; 
method=POST
 form method=post name=form1 action=?php echo $editFormAction; 
?
   table align=center
 tr valign=baseline
   td nowrap align=rightFirst Name/td
   tdinput type=text name=FIRST_NAME value=Enter your first 
name size=32
   /td
 /tr
 tr valign=baseline
   td nowrap align=rightLast Name/td
   tdinput type=text name=LAST_NAME value=Enter your last 
name size=32
   /td
 /tr
 tr valign=baseline
   td nowrap align=rightEmail Address/td
   tdinput type=text name=EMAIL value=Enter your email 
address size=32
   /td
 /tr
 tr valign=baseline
   td height=81 align=right nowrapComments/td
   tdtextarea name=COMMENTS cols=32Enter your 
comments/textarea
   /td
 /tr
 tr valign=baseline
   td nowrap align=rightnbsp;/td
   tdinput type=submit value=Insert Record
   /td
 /tr
   /table
   input type=hidden name=MM_insert value=form1 /
		input type=hidden name=recipient value=animals /
 /form
 pnbsp;/p
 pnbsp;/p
 pnbsp;/p
 pnbsp;/p

 pnbsp;/p
 /td
/table
/body
/html
end--

howard grämer
 New York City
  [EMAIL PROTECTED]




From: Neil Smth [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: [PHP-DB] Re: Send formmail data to Email and Database
Date: Mon, 24 Nov 2003 08:28:25 +
Since you didn't feel it necessary to include your form processing code, 
and as we're not mind readers, we are unable to help you. Sorry, better 
luck next time.

Cheers - Neil.

At 07:57 24/11/2003 +, you wrote:
  PHP List stats since 1997:
http://zirzow.dyndns.org/html/mlists/
From: howard gramer [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Date: Sun, 23 Nov 2003 18:49:23 +
Mime-Version: 1.0
Content-Type: text/plain; format=flowed
Message-ID: [EMAIL PROTECTED]
Subject: Send formmail data to Email and Database
(newbie alert!)
DWMX, Host: PHP, MySQL, Sendmail, and my own Cgi-Bin
I had the database action working well.  But then trying to get the email 
to work I had to switch their positions in the code. Email now on top and 
database on bottom.  So now the database action is not activated.

How can I get the form data to post to the email and the database?
_
Is there a gadget-lover on your gift list?  MSN Shopping has lined up some 
good bets!  http://shopping.msn.com

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP-DB] Send formmail data to Email and Database

2003-11-23 Thread howard gramer
(newbie alert!)
DWMX, Host: PHP, MySQL, Sendmail, and my own Cgi-Bin
I had the database action working well.  But then trying to get the email to 
work I had to switch their positions in the code. Email now on top and 
database on bottom.  So now the database action is not activated.

How can I get the form data to post to the email and the database?

Here is some of the code:

form action=http://www.mysite.com/cgi-sys/formmail.pl; method=POST
   form method=post name=form1 action=?php echo $editFormAction; 
?
 table align=center
   tr valign=baseline
 td nowrap align=rightFirst Name/td
 tdinput type=text name=FIRST_NAME value=Enter your first 
name size=32
 /td
   /tr
   tr valign=baseline
 td nowrap align=rightLast Name/td
 tdinput type=text name=LAST_NAME value=Enter your last 
name size=32
 /td
   /tr
 tr valign=baseline
 td nowrap align=rightnbsp;/td
 tdinput type=submit value=Insert Record
 /td
   /tr
 /table
 input type=hidden name=MM_insert value=form1 /
 input type=hidden name=recipient value=animals /
   /form



howard grämer
 New York City
  [EMAIL PROTECTED]
_
Need a shot of Hank Williams or Patsy Cline?  The classic country stars are 
always singing on MSN Radio Plus.  Try one month free!  
http://join.msn.com/?page=offers/premiumradio

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php