|
Posted by shimmyshack on 05/31/07 15:33
On May 31, 4:29 pm, shimmyshack <matt.fa...@gmail.com> wrote:
> On May 25, 9:41 am, "Buzby" <g...@pumpupthe.net> wrote:
>
> > Hi - I'm a PHP noob!
>
> > I'm running on a windows swerver with php4.xx and am putting together a
> > hotel booking system for a small hotel. I'd like to be able to send out
> > encrypted reservation requests that contain the booking details
> > [including credit card info] to the hotel.
>
> > For other sites using classic asp I've successfully used AspEncrypt -
> > is there anything similar hidden within the depths?
>
> > TIA!
[snip]
oops, should have ben stunnel not stannel.
also
'From' => '{$name} <{$email}>',
should have been
'From' => "{$name} <{$email}>",
and there are double quotes around the enc.txt in
exec($sendmail_exe . ' < "enc.txt"', $result);
because it might be a path with spaces in it, and I wanted to make
that clear.
[Back to original message]
|