Re: [PHP] sending SMS messages to mobile phones from PHP

2004-10-12 Thread Andrew Cowles
g address then you don't need to include the user/pass details in the email, so it'd work with just; mail("[EMAIL PROTECTED]","$message",""); You can also make an HTTP Post. The best way to do this is by writing a quick HTTP Post fun

Re: [PHP] sending SMS messages to mobile phones from PHP

2004-10-11 Thread Andrew Cowles
ased in the UK; which means our prices are in pounds... but you can pay using most major credit cards, so it shouldn't be a big problem. There is a good currency converter at http://www.xe.com/ if you need it, or I'm sure our Sales staff will happily give you the current rates. Best regar

[PHP] Re: PHP / Bulk Email

2002-09-04 Thread Andrew Cowles
s the MTA that causes the biggest overhead in the equation... and Qmail is so much nicer than Sendmail! Cheers, Andy Andrew Cowles KAPOW! SMS Gateway http://www.kapow.co.uk/ --- To text or not to text.. that is A question. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] String handling with special char?

2001-10-30 Thread Andrew Cowles
27;script.php?text=%0A%01%00%B1%B2' > > what you should send in order to work properly > > 'script.php?text= %250A%2501%2500%25B1%25B2' > > Note that all % were changed by %25. > > I tested it and it worked. > > Hope this helps > > > >

Re: [PHP] String handling with special char?

2001-10-30 Thread Andrew Cowles
few emails behind > > $parameters = url_encode("error=25"); > index.htm?$parameters > > Hope this helps > > - Original Message - > From: "Andrew Cowles" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Tuesday, Octob

[PHP] String handling with special char?

2001-10-30 Thread Andrew Cowles
Hi Guys & Gals, Sorry to re-post this but I'm still stuck and have had no reply. I receive via HTTP GET a string variable in encoded HEX format, for example; script.php?text=%0A%01%00%B1%B2 My problem is that PHP sees the first occurance of %00 as a field terminator and so anything after it is

[PHP] Problem handling the %00 Character

2001-10-26 Thread Andrew Cowles
Hi Guys (and Gals), I'm having a little difficulty at the moment. I have a script where users can input HEX encoded data via a form. This data is being received by my script but is terminated at the first occurance of %00. For example; %01%24%84%00%01%02 becomes; %01%24%84 Does anybody know