[PHP] Re: Update site through email

2006-07-03 Thread Manuel Lemos
Hello, on 06/29/2006 06:10 PM Adam Zey said the following: Hy guys I'd like to know if there is a way to update a site through sending an email. Something like this, you send an email and the body of the email substitutes a text you use in your site. Igreat apreciate any help since I couldn't

Re: [PHP] Re: Templates, PHP Frameworks, and DB Abstraction?

2006-07-03 Thread Lester Caine
Manuel Lemos wrote: on 06/30/2006 11:38 AM Jay Paulson said the following: I'd like to get some feedback on what the list thinks is a good template engine other than smarty. I'd also like to do some quick prototyping using a PHP framework does anyone have any recommendations for one that is

[PHP] Printing in php

2006-07-03 Thread weetat
Hi all , I am using PHP 4.3.2 and MYSQL . I need to do printing function in php . Basically , in my client web page , it will display the list of items on the html page. And i have a print button , so that the user can print the html page to their local printer. Any way how to do this in

Re: [PHP] Printing in php

2006-07-03 Thread Chris
weetat wrote: Hi all , I am using PHP 4.3.2 and MYSQL . I need to do printing function in php . Basically , in my client web page , it will display the list of items on the html page. And i have a print button , so that the user can print the html page to their local printer. Any way

Re: [PHP] Re: Templates, PHP Frameworks, and DB Abstraction?

2006-07-03 Thread Kevin Waterson
This one time, at band camp, Lester Caine [EMAIL PROTECTED] wrote: PDO is being pushed as a DB Abstraction library, but it only 'abstracts' the calls to PHP, it does nothing to abstract the SQL if you want a truly generic solution, if you need one, but if you don't then why bother with

Re: [PHP] Re: Templates, PHP Frameworks, and DB Abstraction?

2006-07-03 Thread Lester Caine
Kevin Waterson wrote: This one time, at band camp, Lester Caine [EMAIL PROTECTED] wrote: PDO is being pushed as a DB Abstraction library, but it only 'abstracts' the calls to PHP, it does nothing to abstract the SQL if you want a truly generic solution, if you need one, but if you don't then

[PHP] Re: Templates, PHP Frameworks, and DB Abstraction?

2006-07-03 Thread Jens Kleikamp
Jay Paulson wrote: I'd like to get some feedback on what the list thinks is a good template engine other than smarty. I like ezTemplate. (E_STRICT) I'd also like to do some quick prototyping using a PHP framework does anyone have any recommendations for one that is easy to pick up and run

[PHP] Drag 'n Drop - File Upload

2006-07-03 Thread Martin Staiger
Dear group, we would like to have the possibility to upload files not via HTML-form but via Drag 'n Drop of files. WebDav seem to offer potentials ... but HOW? Are there any examples existing? Are there alternatives existing? Thanks, Marc -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] Drag 'n Drop - File Upload

2006-07-03 Thread Mariano Guadagnini
I've seen some places using a java applet for this. A good example is the course uploading interface of Blackboard LMS. Martin Staiger wrote: Dear group, we would like to have the possibility to upload files not via HTML-form but via Drag 'n Drop of files. WebDav seem to offer potentials ...

Re: [PHP] Drag 'n Drop - File Upload

2006-07-03 Thread Jeffery Fernandez
On Mon, 3 Jul 2006 11:09 pm, Mariano Guadagnini wrote: I've seen some places using a java applet for this. A good example is the course uploading interface of Blackboard LMS. Martin Staiger wrote: Dear group, we would like to have the possibility to upload files not via HTML-form but

Re: [PHP] Re: Templates, PHP Frameworks, and DB Abstraction?

2006-07-03 Thread Robert Cummings
On Mon, 2006-07-03 at 08:37, Jens Kleikamp wrote: Jay Paulson wrote: I'd like to get some feedback on what the list thinks is a good template engine other than smarty. I like ezTemplate. (E_STRICT) YOU DO?? I hope it's changed then from the one used on a site I'm now maintaining. I

[PHP] Re: Templates, PHP Frameworks, and DB Abstraction?

2006-07-03 Thread Jens Kleikamp
Robert Cummings wrote: On Mon, 2006-07-03 at 08:37, Jens Kleikamp wrote: Jay Paulson wrote: I'd like to get some feedback on what the list thinks is a good template engine other than smarty. I like ezTemplate. (E_STRICT) YOU DO?? I hope it's changed then from the one used on a site I'm now

Re: [PHP] Drag 'n Drop - File Upload

2006-07-03 Thread Richard Lynch
On Mon, July 3, 2006 7:55 am, Martin Staiger wrote: we would like to have the possibility to upload files not via HTML-form but via Drag 'n Drop of files. WebDav seem to offer potentials ... but HOW? Are there any examples existing? Are there alternatives existing? If you can install PHP on

Re: [PHP] Printing in php

2006-07-03 Thread Richard Lynch
On Mon, July 3, 2006 3:53 am, weetat wrote: I am using PHP 4.3.2 and MYSQL . I need to do printing function in php . Basically , in my client web page , it will display the list of items on the html page. And i have a print button , so that the user can print the html page to their

[PHP] Re: XUL and PHP - what's your opinion?

2006-07-03 Thread Daniel Orner
Ray Hauge wrote: I keep hearing about XUL, and I was wondering what the opinion of the masses was on this subject for an internal application where the browser is pre-determined. From my point of view I, having only read about it and not used it, is that XUL would make your applications look

[PHP] [Announcement] Sparse 1.05b Released

2006-07-03 Thread Daniel Orner
Yep, another beta release of Sparse, my framework for MySQL-based programs without the programming. A significant new release, which introduces some changes that are not compatible with previous versions. Upgrading isn't hard, don't worry! New features include a support for sorting data and

Re: [PHP] Recursing sessions?

2006-07-03 Thread Richard Lynch
On Sat, July 1, 2006 5:30 pm, Mark wrote: If the frames do any sort of processing on the session information, as is the case with squirrelmail, the last session to exit will overwrite all the changes made by prior frames. This can corrupt session information or lose versions of information.

Re: [PHP] WebDav via PHP

2006-07-03 Thread Richard Lynch
Did you search on php.net using online documentation in the popup menu? Did you find WebDAV in this page: http://us3.php.net/manual/en/ini.core.php You now know as much about this PHP/WebDAV thingie a I do... :-) On Sat, July 1, 2006 1:10 pm, Martin Staiger wrote: Dear group, Apache's

Re: [PHP] global class instance

2006-07-03 Thread Richard Lynch
On Sat, July 1, 2006 4:56 am, sempsteen wrote: i wonder if there is a way of creating an instance of a class and reach it direcly from any scope in PHP4. basically what i want is: class a { function print() { echo 'sth'; } } $a = new a(); and use this a instance from

Re: [PHP] Re: Templates, PHP Frameworks, and DB Abstraction?

2006-07-03 Thread Jay Paulson
I'd like to get some feedback on what the list thinks is a good template engine other than smarty. I'd also like to do some quick prototyping using a PHP framework does anyone have any recommendations for one that is easy to pick up and run with? Finally, does anyone have any suggestions

Re: [PHP] Re: Templates, PHP Frameworks, and DB Abstraction?

2006-07-03 Thread Lester Caine
Jay Paulson wrote: Thinking about this paragraph above makes me wonder if with that way of looking at it would one need a template engine? For example, why not just separate the business logic and the HTML as much as possible and then only imbed PHP in HTML to display the variables (?= $var

Re: [PHP] Recursing sessions?

2006-07-03 Thread markw
On Sat, July 1, 2006 5:30 pm, Mark wrote: If the frames do any sort of processing on the session information, as is the case with squirrelmail, the last session to exit will overwrite all the changes made by prior frames. This can corrupt session information or lose versions of

Re: [PHP] Problems installing 5.1.4

2006-07-03 Thread Ashley M. Kirchner
Richard Lynch wrote: Looks to me like PEAR is trying to phone home to download more PEAR stuff to install PEAR stuff... Are you connected to the internet? Yep, 24/7. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Problems installing 5.1.4

2006-07-03 Thread Chris
Ashley M. Kirchner wrote: I'm trying to get v5.1.4 installed on my server and running into something of a mystery. I can configure and run make with no problem. When I run 'make install' however, it starts the process, installing the dynamic modules, PHP SAPI module, make the necessary

[PHP] running multiple updates on a single line

2006-07-03 Thread Ryan A
Hi, in phpmyadmin, in the SQL part where you can write a query if I have a double update such as this: it works without a problem as I am ending each sql statement with a simicolon, but in my scripts when I try to run multiple updates in a single line eg: $xyz=update xyz set id=1 where

Re: [PHP] running multiple updates on a single line

2006-07-03 Thread Chris
Ryan A wrote: Hi, in phpmyadmin, in the SQL part where you can write a query if I have a double update such as this: it works without a problem as I am ending each sql statement with a simicolon, but in my scripts when I try to run multiple updates in a single line eg: $xyz=update xyz set

[PHP] Re: running multiple updates on a single line

2006-07-03 Thread Jo�o C�ndido de Souza Neto
Could any of these lines cousing an error? Ryan A [EMAIL PROTECTED] escreveu na mensagem news:[EMAIL PROTECTED] Hi, in phpmyadmin, in the SQL part where you can write a query if I have a double update such as this: it works without a problem as I am ending each sql statement with a

Re: [PHP] Re: running multiple updates on a single line

2006-07-03 Thread Robert Cummings
On Mon, 2006-07-03 at 22:47, João Cândido de Souza Neto wrote: Could any of these lines cousing an error? Ryan A [EMAIL PROTECTED] escreveu na mensagem news:[EMAIL PROTECTED] Hi, in phpmyadmin, in the SQL part where you can write a query if I have a double update such as this: it

[PHP] PHP sessions possibly eating up inodes

2006-07-03 Thread Dave M G
PHP List, Recently, my web hosting server has been maxing out it's alloted hard drive space. It turns out that there are no single large files, but that I have been maxing out my inode usage. Not being a Unix expert, I have a limited understanding of inodes, but it seems they are related to