RE: [PHP] Help me learn! with an explanation of these two functions.

2002-11-07 Thread Steve Jackson
stems Ltd. http://www.violasystems.com [EMAIL PROTECTED] Mobile +358 50 343 5159 > -Original Message- > From: Jason Wong [mailto:php-general@;gremlins.com.hk] > Sent: 7. marraskuuta 2002 11:51 > To: [EMAIL PROTECTED] > Subject: Re: [PHP] Help me learn! with an explanation of > these t

Re: [PHP] Help me!!!Can I use PHP to send SMS message???

2002-02-28 Thread Simon Willison
hei wrote: >Help me!!!Can I use PHP to send SMS message???If yes, how can I use it??? > > >(((Please e-mail the answer to me [EMAIL PROTECTED]))) > One very cheeky way of doing this would be to sign up to one of the free SMS services on the web (such as lycos mobile) and set up a PHP script tha

RE: [PHP] Help me!!!Can I use PHP to send SMS message???

2002-02-28 Thread Frank Hertogs
: [EMAIL PROTECTED] Onderwerp: Re: [PHP] Help me!!!Can I use PHP to send SMS message??? hei wrote: >Help me!!!Can I use PHP to send SMS message???If yes, how can I use it??? > > >(((Please e-mail the answer to me [EMAIL PROTECTED]))) > One very cheeky way of doing this would be to sign u

Re: [PHP] Help me!!!Can I use PHP to send SMS message???

2002-03-01 Thread LaserJetter
Simon Willison [mailto:[EMAIL PROTECTED]] > Verzonden: donderdag 28 februari 2002 12:30 > Aan: hei > CC: [EMAIL PROTECTED] > Onderwerp: Re: [PHP] Help me!!!Can I use PHP to send SMS message??? > > hei wrote: > > >Help me!!!Can I use PHP to send SMS message???If yes, ho

[PHP] Re:[PHP] HELP ME PLEASE: php not run on IIS 4.0

2002-03-25 Thread Liam
25/03/2002 8:27:51 PM hehehe You could start with loosing IIS, it's bad news. The port of Apache for windows is good, if not, Xitami's also quite good. http://www.apache.org/dist/httpd/binaries/win32/ http://www.xitami.com/ But, no, sorry. I can't help you. "Berlina" <[EMAIL PROTECTED]> wro

Re: [PHP] Help me specify/develop a feature! (cluster web sessions management)

2007-03-13 Thread Richard Lynch
On Tue, March 13, 2007 7:27 pm, Mark wrote: > I have a web session management server that makes PHP clustering easy > and > fast. I have been getting a number of requests for some level of > redundancy. > > As it is, I can save to an NFS or GFS file system, and be redundant > that > way. Talk to J

Re: [PHP] Help me specify/develop a feature! (cluster web sessions management)

2007-03-14 Thread markw
> On Tue, March 13, 2007 7:27 pm, Mark wrote: >> I have a web session management server that makes PHP clustering easy >> and >> fast. I have been getting a number of requests for some level of >> redundancy. >> >> As it is, I can save to an NFS or GFS file system, and be redundant >> that >> way.

RE: [PHP] help me split chars w/o spaces by 2... like: 2004

2004-12-08 Thread Tyler Replogle
have you tride using chop() ? # begin code $year_split = date("Y"); $chars = chop($year_split); $chars[0] // = 2 $chars[1] // = 0 $chars[2] // = 0 $chars[3] //= 4 # end code I hope that will help From: Louie Miranda <[EMAIL PROTECTED]> Reply-To: Louie Miranda <[EMAIL PROTECTED]> To: [EMAIL

Re: [PHP] help me split chars w/o spaces by 2... like: 2004

2004-12-08 Thread Robby Russell
On Thu, 2004-12-09 at 09:55 +0800, Louie Miranda wrote: > Help me split chars w/o spaces by 2... like: 2004 > How can i make it? > > first: 20 > second: 04 > > Im working on this.. > > # begin code > $year_split = date("Y"); > $chars = preg_split('//', $year_split, -1, PREG_SPLIT_NO_EMPTY);

Re: [PHP] help me split chars w/o spaces by 2... like: 2004

2004-12-08 Thread Louie Miranda
outputs: 2004 Whats the correct syntax for it? The manual said.. This function is an alias of rtrim(). and: rtrim (PHP 3, PHP 4 ) rtrim -- Strip whitespace from the end of a string On Wed, 08 Dec 2004 18:11:19 -0800, Tyler Replogle <[EMAIL PROTECTED]> wrote: > have you tride using ch

Re: [PHP] help me split chars w/o spaces by 2... like: 2004

2004-12-09 Thread ApexEleven
I did something like this a while back, I believe I used chunk_split [code] [/code] it'll output something along the lines of: 20 04 Hope this helps, -- << Jasper Howard - Database Administration ApexEleven.com 530 559 0107 -

Re: [PHP] help me out with form details converted into pdf file save it one place as well as send mail attactment

2008-02-13 Thread Brady Mitchell
On Feb 13, 2008, at 426AM, pretty wrote hi any one help me out, im using cronofirm, i need to field form details will converted into pdf as well as it will go maill attachment doing this in joomla, atleast i need this only php with out joomla. For sending email: The standard mail function

Re: [PHP] help me out with form details converted into pdf file save it one place as well as send mail attactment

2008-02-13 Thread David Giragosian
On 2/13/08, pretty <[EMAIL PROTECTED]> wrote: > > hi any one help me out, im using cronofirm, i need to field form details will > converted into pdf as well as it will go maill attachment doing this in > joomla, atleast i need this only php with out joomla. It might be overkill for your purposes,

Re: [PHP] help me out with form details converted into pdf file save it one place as well as send mail attactment

2008-02-13 Thread Richard Lynch
On Wed, February 13, 2008 6:26 am, pretty wrote: > hi any one help me out, im using cronofirm, i need to field form > details will > converted into pdf as well as it will go maill attachment doing this > in > joomla, atleast i need this only php with out joomla. To make a PDF, you can use: http:/

<    1   2