RE: [PHP] magic quotes

2007-07-17 Thread Steve Perkins
Talking about .htaccess, anyone know an easy way of configuring os (generally linux/windows) alternative settings in the same .htaccess ? Mainly for paths (eg: include_path), so I can just upload a whole directory at a time from my (Windows) development machine to a (Linux) production server

RE: [PHP] SMS questions

2007-07-15 Thread Steve Perkins
Sorry, www.textit.biz Cheers -Original Message- From: Dan [mailto:[EMAIL PROTECTED] Sent: 13 July 2007 17:52 To: php-general@lists.php.net Subject: Re: [PHP] SMS questions Might want to retry that link, it's broken. - Dan Steve Perkins [EMAIL PROTECTED] wrote in message news:[EMAIL

FW: [PHP] SMS questions

2007-07-13 Thread Steve Perkins
M. Nixon Sent: 13 July 2007 09:17 To: Steve Perkins [mailto:[EMAIL PROTECTED] Subject: FW: [PHP] SMS questions Hi Steve Hope you're doing fine. It is possible. In short, you have seen how a SMS message is sent using a operators Name label i.e. the Messages says who it's from e.g. TEXT

RE: [PHP] mail function from and reply to address problem

2007-07-12 Thread Steve Perkins
Sounds more like the mail server than PHP. Although weird anyway ! What mail server are you using : local/remote, smtp/sendmail/qmail ? Try using whatever method and send a mail through this server from outside of PHP with the same problem parameters ? Does that work ? It should either eliminate

[PHP] PHP5 objects access/instantiation model

2007-07-11 Thread Steve Perkins
Hi, new to PHP5 and I have a question about the object model. I want to be able to create a class which is allows abstraction from specifics. So for one example, imagine a generic database connection wrapper which can have multiple drivers depending on the database used. Some of the

[PHP] PHP5 objects access/instantiation model (correction)

2007-07-11 Thread Steve Perkins
OK, so that came out fairly illegible. Try again: Hi, new to PHP5 (and the forums evidently !) and I have a question about the object model. I want to be able to create a class which is allows abstraction from specifics. So for one example, imagine a generic database connection wrapper which can

RE: [PHP] PHP5 objects access/instantiation model (correction)

2007-07-11 Thread Steve Perkins
[mailto:[EMAIL PROTECTED] Sent: 11 July 2007 21:29 To: Steve Perkins Cc: php-general@lists.php.net Subject: Re: [PHP] PHP5 objects access/instantiation model (correction) You probably ought to have: class mysql_driver extends generic_driver { } Seems like that would be the most reasonable OOP