Re: [PHP] Suggestions of some good, simple file upload 'in progress' code?

2009-04-23 Thread tedd
At 1:46 PM -0600 4/22/09, scubak1w1 wrote: I am thinking that is where I am at... as you said, the user just needs to know that there computer is busy, hang on a second already! I like those icons - if I may be so bold though, and excuse the broadness of the question, are you / can you use som

Re: [PHP] Suggestions of some good, simple file upload 'in progress' code?

2009-04-22 Thread Manuel Lemos
Hello, on 04/22/2009 04:46 PM scubak1w1 said the following: > I am thinking that is where I am at... as you said, the user just needs to > know that there computer is busy, hang on a second already! > > I like those icons - if I may be so bold though, and excuse the broadness of > the questio

Re: [PHP] Suggestions of some good, simple file upload 'in progress' code?

2009-04-22 Thread scubak1w1
""scubak1w1"" wrote in message news:44.c6.33545.6747f...@pb1.pair.com... > > "tedd" wrote in message > news:p0624080ac614d6bf9...@[192.168.1.101]... >> At 9:28 PM -0600 4/21/09, scubak1w1 wrote: >>>Hello, >>> >>>Can someone pass on some suggestions of some good, simple file upload 'in >>>progr

Re: [PHP] Suggestions of some good, simple file upload 'in progress' code?

2009-04-22 Thread scubak1w1
"tedd" wrote in message news:p0624080ac614d6bf9...@[192.168.1.101]... > At 9:28 PM -0600 4/21/09, scubak1w1 wrote: >>Hello, >> >>Can someone pass on some suggestions of some good, simple file upload 'in >>progress' code? > > > After all is said, you can pick anything you want from here: > > http

Re: [PHP] Suggestions of some good, simple file upload 'in progress' code?

2009-04-22 Thread tedd
At 9:28 PM -0600 4/21/09, scubak1w1 wrote: Hello, Can someone pass on some suggestions of some good, simple file upload 'in progress' code? After all is said, you can pick anything you want from here: http://webbytedd.com/bb/wait/ This is as simple as it gets for there is no simple solution

[PHP] Suggestions of some good, simple file upload 'in progress' code?

2009-04-21 Thread scubak1w1
Hello, Can someone pass on some suggestions of some good, simple file upload 'in progress' code? Maybe as simple as changing the cursor icon for the duration? I have am HTML form that gathers some data and allows for a file upload of up to 80Mb (on a secure site, and limited to *.zip files) -

Re: [PHP] Suggestions?

2009-01-13 Thread Phpster
I have a fiscal calendar table that I use for the same thing, storing the date, day of the week and a column indicating whether the day is a weekday, a weekend or a holiday. This allows me flexibility to also use the table to set business shutdowns as a holiday. A simple date query can retu

Re: [PHP] Suggestions?

2009-01-13 Thread Dan Shirah
On Tue, Jan 13, 2009 at 2:14 PM, wrote: > > Hard to say without knowing the data structures... > > You can't do a simple count of the holidays and add that, because you might > end up with yet another holiday in the result. > > Start at 12/23 and want to add 6 business days. > > You find 1 holida

Re: [PHP] Suggestions?

2009-01-13 Thread Robert Cummings
On Tue, 2009-01-13 at 19:14 +, c...@l-i-e.com wrote: > Hard to say without knowing the data structures... > > You can't do a simple count of the holidays and add that, because you might > end up with yet another holiday in the result. > > Start at 12/23 and want to add 6 business days. > >

Re: [PHP] Suggestions?

2009-01-13 Thread Dan Shirah
On Tue, Jan 13, 2009 at 2:09 PM, Eric Butera wrote: > Are you asking how to do > > $holidays[] = date; > array_push($holidays, date); ? > > If you were generating dates to compare against today tho, you could > just return upon a match at that point and not even store them. No > point in creati

Re: [PHP] Suggestions?

2009-01-13 Thread ceo
Hard to say without knowing the data structures... You can't do a simple count of the holidays and add that, because you might end up with yet another holiday in the result. Start at 12/23 and want to add 6 business days. You find 1 holiday in between, so you add 7 business days and end

Re: [PHP] Suggestions?

2009-01-13 Thread Eric Butera
On Tue, Jan 13, 2009 at 2:00 PM, Dan Shirah wrote: > Hello all! > > I have written some code that will calculate all static and floating > holidays. > > I have also written some code that will act as a business day counter. > > My application currently determines a set number of business days to c

[PHP] Suggestions?

2009-01-13 Thread Dan Shirah
Hello all! I have written some code that will calculate all static and floating holidays. I have also written some code that will act as a business day counter. My application currently determines a set number of business days to count. (2 business days and 7 business days from today) This part

Re: [PHP] Suggestions for Web based FileServer/Mailaccess

2007-04-10 Thread Richard Lynch
Personally, I would use http://php.net/imap_open and friends to add the mailbox, and let the OS and installed IMAP software choose the correct mbox/Maildir option based on the server configuration, rather than try to out-guess them... On Wed, April 4, 2007 1:20 pm, Michelle Konzack wrote: > **

[PHP] Suggestions for Web based FileServer/Mailaccess

2007-04-04 Thread Michelle Konzack
* * Do not Cc: me, because I am on THIS list, if I write here.* * Keine Cc: an mich, bin auf DIESER Liste wenn ich hier schreibe. * * Ne me mettez pas en Cc:, je suis sur CETTE liste, si j'ecris ici. * ***

Re: [PHP] Suggestions of GPL plugin-system?

2007-01-29 Thread Larry Garfield
On Monday 29 January 2007 8:37 pm, Robert Cummings wrote: > On Mon, 2007-01-29 at 20:02 -0600, Larry Garfield wrote: > > I was looking for a similar good-example about 2 years ago. What I found > > was Drupal (http://drupal.org/), and it's hook system. I have since > > given up on writing my own

Re: [PHP] Suggestions of GPL plugin-system?

2007-01-29 Thread Robert Cummings
On Mon, 2007-01-29 at 20:02 -0600, Larry Garfield wrote: > I was looking for a similar good-example about 2 years ago. What I found was > Drupal (http://drupal.org/), and it's hook system. I have since given up on > writing my own plugin system and became a small fry Drupal developer. :-) > >

Re: [PHP] Suggestions of GPL plugin-system?

2007-01-29 Thread Larry Garfield
I was looking for a similar good-example about 2 years ago. What I found was Drupal (http://drupal.org/), and it's hook system. I have since given up on writing my own plugin system and became a small fry Drupal developer. :-) YMMV. On Monday 29 January 2007 6:50 am, Ivo F.A.C. Fokkema wrote:

[PHP] Suggestions of GPL plugin-system?

2007-01-29 Thread Ivo F.A.C. Fokkema
Hi guys, I've been developing a GPL PHP/MySQL app for some time now and I would like to extend it with a module/plugin system. The idea would be that people could add a directory in a plugin path that would contain a bunch of PHP files extending the functionality of my application. This directory

RE: [PHP] Suggestions for the PHP team?

2006-01-12 Thread Jay Blanchard
[snip] I was just woundering where do a php coder send his suggestions regarding PHP? [/snip] There is a PHP-DEV mailing list which would probably be the best place. See http://www.php.net/mailinglists -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/u

[PHP] Suggestions for the PHP team?

2006-01-12 Thread tatsudoshi
Hello newsgroup. I was just woundering where do a php coder send his suggestions regarding PHP? tatsudoshi -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Suggestions for class design

2005-09-20 Thread Chris W. Parker
Sorry I've been so quiet on this topic since I started it but I've basically been overwhelmed with information! :) I was hoping the answer(s) would be a lot more plain and simple than it(they) has been so I could get to implementing some things right away. But I'm afraid it's going to take me longe

Re: [PHP] Suggestions for class design

2005-09-20 Thread Jochem Maas
Hi Chris, nice thread, good questions - nice to see some real programming theory being discussed - does us all some good :-) here is my take, hth: Chris W. Parker wrote: Anas Mughal on Monday, September 19, 2005 4:02 PM said: The simplest way to solve this pro

RE: [PHP] Suggestions for class design

2005-09-19 Thread Chris W. Parker
Anas Mughal on Monday, September 19, 2005 4:02 PM said: > The simplest way to solve this problem is as follows: > > - Have your Customer class hold only attributes for a customer. This > class would only have getter and setter methods. In the Java world, > this is r

Re: [PHP] Suggestions for class design

2005-09-19 Thread Anas Mughal
The simplest way to solve this problem is as follows: - Have your Customer class hold only attributes for a customer. This class would only have getter and setter methods. In the Java world, this is referred to as a JavaBean. - Then, have a DAO class that does your data access functions. Here i

Re: [PHP] Suggestions for class design

2005-09-19 Thread M Saleh EG
>From what I understand is you need a data objects class. Use a generic class such as PEAR's DB_DataObject (http://pear.php.net/package/DB_DataObject). All you have to do is give the table name and the class for example would be in our case DB_DataObject_Customer And then querying the table wou

Re: [PHP] Suggestions for class design

2005-09-19 Thread Satyam
""Chris W. Parker"" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Jay Blanchard on Monday, September 19, 2005 10:40 AM said: > [snip] > Where I get tripped up is when I realize I'll need to at some point > get more than one customer at a time and thus

RE: [PHP] Suggestions for class design

2005-09-19 Thread Chris W. Parker
Michael Sims on Monday, September 19, 2005 12:04 PM said: > Basically you're implementing DAO's (Data Access Objects), similar to > what an ORM (Object Relational Mapper) tool would do for you. [snip] Thanks for the info, and I'll check out the Propel site a little

RE: [PHP] Suggestions for class design

2005-09-19 Thread Michael Sims
Chris W. Parker wrote: > Let's take for example a class called 'Customer' that (obviously) > manipulates customers in the database. Here is a very basic Customer > class. (Data validation and the like are left out for brevity.) [snip] > Where I get tripped up is when I realize I'll need to at some

Re: [PHP] Suggestions for class design

2005-09-19 Thread Rory McKinley
Chris W. Parker wrote: >> >> class Customer >> { >> var $id; >> var $name; >> function get_customer() >> { $this->name = $customer['name']; >> } >> Where I get tripped up is when I realize I'll need to at some point get >> more than one customer at a

Re: [PHP] Suggestions for class design

2005-09-19 Thread Robert Cummings
On Mon, 2005-09-19 at 14:00, Mikey wrote: > Jay Blanchard wrote: > > >[snip] > >Well, yes I think it does, but what I'm missing is how this new object > >interacts with the original one if it does at all. And what would I call > >it? 'Multiple_Customers'? Or.. perhaps just 'Customers'! :) > > > >D

RE: [PHP] Suggestions for class design

2005-09-19 Thread Chris W. Parker
Jay Blanchard on Monday, September 19, 2005 10:53 AM said: > I think that it should be a stand alone class. The Customers class > could instantiate the needed number of Customer objects and the > methods of the Customers class could affect each Customer object. I'm

Re: [PHP] Suggestions for class design

2005-09-19 Thread Mikey
Jay Blanchard wrote: [snip] Well, yes I think it does, but what I'm missing is how this new object interacts with the original one if it does at all. And what would I call it? 'Multiple_Customers'? Or.. perhaps just 'Customers'! :) Do I extend the Customer class or is it a stand alone class? [/

RE: [PHP] Suggestions for class design

2005-09-19 Thread Jay Blanchard
[snip] Well, yes I think it does, but what I'm missing is how this new object interacts with the original one if it does at all. And what would I call it? 'Multiple_Customers'? Or.. perhaps just 'Customers'! :) Do I extend the Customer class or is it a stand alone class? [/snip] I think that it s

RE: [PHP] Suggestions for class design

2005-09-19 Thread Chris W. Parker
Jay Blanchard on Monday, September 19, 2005 10:40 AM said: > [snip] > Where I get tripped up is when I realize I'll need to at some point > get more than one customer at a time and thus I want to add a method > called 'get_customers()'. > [/snip] > Why, at any point

RE: [PHP] Suggestions for class design

2005-09-19 Thread Jay Blanchard
[snip] Where I get tripped up is when I realize I'll need to at some point get more than one customer at a time and thus I want to add a method called 'get_customers()'. [/snip] I know that you didn't ask for this, but the point needs discussing given your assertion above. Why, at any point, woul

[PHP] Suggestions for class design

2005-09-19 Thread Chris W. Parker
Hello, Every time I write some classes I always come across the same fundamental problem that I haven't figured out how to solve/approach yet. I'm not exactly sure how to put it into words simply but here goes... Let's take for example a class called 'Customer' that (obviously) manipulates custom

Re: [PHP] suggestions needed to use "session"

2005-09-06 Thread Nahalingam Kanakavel
Hi all once again, Thanks for all, your suggestions made me to know about sessions and about the functions needed to handle sessions. but I have some doubts plz clarify those things what for the session Id is ?. what is SID ? I saw this in some example codings but it is not working in my mach

Re: [PHP] suggestions needed to use "session"

2005-09-06 Thread viraj
another good one, but for intermediates http://www.zend.com/zend/tut/session.php ~viraj. On 9/6/05, Robert Graham <[EMAIL PROTECTED]> wrote: > Nahalingam Kanakavel wrote: > > >Hi all, > > > >I am new to PHP. > >I know some thing about SESSIONS in PHP, I am in need of your suggestions. > >how t

Re: [PHP] suggestions needed to use "session"

2005-09-06 Thread Robert Graham
Nahalingam Kanakavel wrote: Hi all, I am new to PHP. I know some thing about SESSIONS in PHP, I am in need of your suggestions. how to use sessions ? what is an efficient way to handle session_id ? like that. How efficiently we can use session concept in our web site development ? how it is hel

[PHP] suggestions needed to use "session"

2005-09-05 Thread Nahalingam Kanakavel
Hi all, I am new to PHP. I know some thing about SESSIONS in PHP, I am in need of your suggestions. how to use sessions ? what is an efficient way to handle session_id ? like that. How efficiently we can use session concept in our web site development ? how it is helpful. thanks in advance. --

Re: [PHP] Suggestions for optimization?

2003-11-30 Thread Eugene Lee
On Sat, Nov 29, 2003 at 09:32:19AM -0800, Galen wrote: : : I'm working on some database search ranking code. It currently : represents 95-98% of the time spent when doing fuzzy seaches. I have : tried my best to optimize my code - algorithmic shortcuts, eliminating : session variables, unsettin

[PHP] Suggestions for optimization?

2003-11-29 Thread Galen
I'm working on some database search ranking code. It currently represents 95-98% of the time spent when doing fuzzy seaches. I have tried my best to optimize my code - algorithmic shortcuts, eliminating session variables, unsetting irrelevant results, etc and benchmarking to find the best techn

Re: [PHP] Suggestions on FAQ application?

2003-01-11 Thread The Head Sage
ackage please spare me the rude replies which seem to run rampant on > here lately... > > Jeff > - Original Message - > From: "Timothy Hitchens (HiTCHO)" <[EMAIL PROTECTED]> > To: "'Jeff Lewis'" <[EMAIL PROTECTED]>; "'php-gen&#

Re: [PHP] Suggestions on FAQ application?

2003-01-11 Thread John Nichel
Maybe y'all should take your flame war off list? Just a friendly little suggestion. Jeffrey B. Ferland wrote: Why re-invent what is already written? I'm well aware that it's easy to write but there may be something out there already that suits my needs and has some features that I hadn't thought

Re: [PHP] Suggestions on FAQ application?

2003-01-11 Thread Jeffrey B. Ferland
> Why re-invent what is already written? I'm well aware that it's easy to > write but there may be something out there already that suits my needs and > has some features that I hadn't thought of. If you don't have a suggestion > on a package please spare me the rude replies which seem to run rampa

Re: [PHP] Suggestions on FAQ application?

2003-01-10 Thread michael kimsal
Jeff Lewis wrote: Why re-invent what is already written? I'm well aware that it's easy to write but there may be something out there already that suits my needs and has some features that I hadn't thought of. If you don't have a suggestion on a package please spare me the rude replies which seem t

RE: [PHP] Suggestions on FAQ application?

2003-01-10 Thread Sean Malloy
sage- From: Jeff Lewis [mailto:[EMAIL PROTECTED]] Sent: Saturday, 11 January 2003 1:52 PM To: Timothy Hitchens (HiTCHO); 'php-gen' Subject: Re: [PHP] Suggestions on FAQ application? Why re-invent what is already written? I'm well aware that it's easy to write but there may be som

Re: [PHP] Suggestions on FAQ application?

2003-01-10 Thread Jeff Lewis
em to run rampant on here lately... Jeff - Original Message - From: "Timothy Hitchens (HiTCHO)" <[EMAIL PROTECTED]> To: "'Jeff Lewis'" <[EMAIL PROTECTED]>; "'php-gen'" <[EMAIL PROTECTED]> Sent: Friday, January 10, 2003 9:39

RE: [PHP] Suggestions on FAQ application?

2003-01-10 Thread Timothy Hitchens \(HiTCHO\)
It is a 30 minute write... not that hard!! Timothy Hitchens (HiTCHO) Open Platform Consulting e-mail: [EMAIL PROTECTED] > -Original Message- > From: Jeff Lewis [mailto:[EMAIL PROTECTED]] > Sent: Saturday, 11 January 2003 12:37 PM > To: php-gen > Subject: [PHP] Sug

[PHP] Suggestions on FAQ application?

2003-01-10 Thread Jeff Lewis
I've checked Hotscripts and I can't findanything relatively new or that suits my needs. I was wondering if anyone uses a FAQ program that they could suggest? Jeff

RE: [PHP] Suggestions on how I should handle this

2002-12-23 Thread John W. Holmes
> I have an application I've written for a pet sitting service. So someone > calls and says they need a pet sit and we take their info and pick a > sitter. > We call that sitter to see if they can take the job, but if they say no, > then we have to change it to a new sitter who can take the job. I

RE: [PHP] Suggestions on how I should handle this

2002-12-23 Thread Edward Peloke
the sitter and this new table to get all the info you need. Eddie -Original Message- From: Sarah Heffron [mailto:[EMAIL PROTECTED]] Sent: Monday, December 23, 2002 1:33 PM To: php list Subject: [PHP] Suggestions on how I should handle this I have an application I've written fo

[PHP] Suggestions on how I should handle this

2002-12-23 Thread Sarah Heffron
I have an application I've written for a pet sitting service. So someone calls and says they need a pet sit and we take their info and pick a sitter. We call that sitter to see if they can take the job, but if they say no, then we have to change it to a new sitter who can take the job. I want to ke

Re: [PHP] Suggestions Please

2002-11-09 Thread John Nichel
I'm not big at taking options away from a customer / client / visitor to my site, but in a case like this, I would. You don't have to worry about all the different ways people can enter things, if you set the standards. For example, with the email Check it with JavaScript before the form

Re: [PHP] Suggestions Please

2002-11-09 Thread Justin French
Programatically, I doubt this can be done... or if it can, it would be one mother of a regex :) As you've already pointed out, there's a million ways to write an email address, and something such as an ICQ number can be written without the word "icq" and some people will still spot it... but to P

[PHP] Suggestions Please

2002-11-09 Thread Mike Miller
Ok I am building a site similar in purpose to elance for a client, and part of their terms and conditions is no contact info till a bid has been awarded. So they want all contact info that is posted to be removed on submission of the bid, and any on site contact between buyer, and provider. I have

Re: [PHP] suggestions for a good php+mysql isp?

2002-08-20 Thread Neil Freeman
.. > >>http://www.futurequest.com >> >>Fantastic!! >> >>~ Matthew >> >>-Original Message- >>From: db, or not db [mailto:[EMAIL PROTECTED]] >>Sent: Tuesday, August 20, 2002 11:01 AM >>To: [EMAIL PROTECTED] >>Subject: [PHP] sugg

Re: [PHP] suggestions for a good php+mysql isp?

2002-08-20 Thread Justin French
t; wrote in message > 001f01c2485a$8e265ad0$6901a8c0@SURVIVAL">news:001f01c2485a$8e265ad0$6901a8c0@SURVIVAL... >> http://www.futurequest.com >> >> Fantastic!! >> >> ~ Matthew >> >> -Original Message- >> From: db, or not db [mai

Re: [PHP] suggestions for a good php+mysql isp?

2002-08-20 Thread Adam Voigt
ED]> wrote in message > 001f01c2485a$8e265ad0$6901a8c0@SURVIVAL">news:001f01c2485a$8e265ad0$6901a8c0@SURVIVAL... > > http://www.futurequest.com > > > > Fantastic!! > > > > ~ Matthew > > > > -Original Message- > > From: db, or not

Re: [PHP] suggestions for a good php+mysql isp?

2002-08-20 Thread db or not db
> ~ Matthew > > -Original Message- > From: db, or not db [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, August 20, 2002 11:01 AM > To: [EMAIL PROTECTED] > Subject: [PHP] suggestions for a good php+mysql isp? > > > I have searched the archives and the last time this

RE: [PHP] suggestions for a good php+mysql isp?

2002-08-20 Thread MET
http://www.futurequest.com Fantastic!! ~ Matthew -Original Message- From: db, or not db [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 20, 2002 11:01 AM To: [EMAIL PROTECTED] Subject: [PHP] suggestions for a good php+mysql isp? I have searched the archives and the last time this

[PHP] suggestions for a good php+mysql isp?

2002-08-20 Thread db, or not db
I have searched the archives and the last time this was seriously discussed was september of last year...unless I have a giant gaping hole in my archive! :) I was considering northwesthost.com and would like some opinions on them or anybody you are happy with The list of isp's on php.net doesn'

Re: [PHP] Suggestions for getting started with poll app.

2002-06-08 Thread webmaster
- Original Message -From: "Nick Wilson" <[EMAIL PROTECTED]>To: <[EMAIL PROTECTED]>Sent: Sunday, June 09, 2002 12:15 AMSubject: Re: [PHP] Suggestions for getting started with poll app.* and then [EMAIL PROTECTED] declared> I want to build my own poll(The

[PHP] Suggestions for getting started with poll app.

2002-06-08 Thread webmaster
I want to build my own poll(The ones availble from sites such as hotscripts.com are not quite what I need)   Could any one tell me of a *good* tutorial?   Particularly the number of questions would be different between each poll not a fixed number.   JJ Harrison[EMAIL PROTECTED]www.tececo.com

RE: [PHP] suggestions on work-arounds to highlight_file() ?

2002-04-03 Thread Bob
How about just make a symbolic link with .phps to the file: ln -s /www/htdocs/phpdoc.php /www/htdocs/phpdoc.phps Then make sure that your httpd.conf file has the following line in it: AddType application/x-httpd-php-source .phps Then url.com/phpdoc.phps would view the colored source for the fi

Re: [PHP] suggestions on work-arounds to highlight_file() ?

2002-04-03 Thread Philip Olson
I meant to use highlight_file instead of highlight_string, doh! I'll go back in time and modify the source below :) Philip On Thu, 4 Apr 2002, Philip Olson wrote: > > A note exists at http://www.php.net/highlight_file that says: > > Note: The return parameter became available in PHP 4.2.0

Re: [PHP] suggestions on work-arounds to highlight_file() ?

2002-04-03 Thread Philip Olson
A note exists at http://www.php.net/highlight_file that says: Note: The return parameter became available in PHP 4.2.0. Before this time it behaved like the default, which is FALSE So if you want to capture the output of highlight_file before 4.2.0 then you'll need to use output b

[PHP] suggestions on work-arounds to highlight_file() ?

2002-04-03 Thread Hugh Bothwell
using PHP 4.1.3-dev on WinME, I call $a = "str" . highlight_file("file.php", true); and get a warning, Warning: Wrong parameter count for highlight_file() in myfile.php and *don't* get the highlighted source I want. show_source() does precisely the same thing. The manual says that PH

Re: [PHP] Suggestions for the next php

2001-12-21 Thread Manuel Lemos
Hello, Stephano Mariani wrote: > > I believe fork is very expensive in terms of performance. > One should consider that in the case of server modules (ISAPI in > particular) a huge overhead is incurred when forking. I better > alternative would be the vfork call. Or better still, the __clone cal

Re: [PHP] Suggestions for the next php

2001-12-21 Thread Manuel Lemos
Hello, Rouvas Stathis wrote: > > Manuel Lemos wrote: > > > > > > For example, multi-threading. Looking at the PHP sources, I can see this > > > > would be fairly easy to implement on some most server modules. Before I > > > > get fried by people for suggesting this, I know there are many functio

Re: [PHP] Suggestions for the next php

2001-12-21 Thread Manuel Lemos
Hello, Vincent Stoessel wrote: > > I did not know that, thank you for the info. > I just downloaded phpIDE beta and I am highly impressed with the > debugger. It say that it can do remote debugging as well. That sounds cool > but I wonder how secure it is. Zend folks, I apologize for taking so l

RE: [PHP] Suggestions for the next php

2001-12-21 Thread Stephano Mariani
:21 To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Suggestions for the next php Manuel Lemos wrote: > > > > For example, multi-threading. Looking at the PHP sources, I can > > > see this would be fairly easy to implement on some most server > > >

Re: [PHP] Suggestions for the next php

2001-12-21 Thread Rouvas Stathis
Manuel Lemos wrote: > > > > For example, multi-threading. Looking at the PHP sources, I can see this > > > would be fairly easy to implement on some most server modules. Before I > > > get fried by people for suggesting this, I know there are many functions > > > that are not thread safe, such th

Re: [PHP] Suggestions for the next php

2001-12-20 Thread Vincent Stoessel
I did not know that, thank you for the info. I just downloaded phpIDE beta and I am highly impressed with the debugger. It say that it can do remote debugging as well. That sounds cool but I wonder how secure it is. Zend folks, I apologize for taking so long to try out this product, it's great!

Re: [PHP] Suggestions for the next php

2001-12-20 Thread Manuel Lemos
Hello, Vincent Stoessel wrote: > > I would love to see a decent debugger like perl has. > Nothing is more frustrating then having to echo and die() > to debug code. Especially when you are assigned the task of > updating code from a developer that has long gone without > leaving any documentatio

Re: [PHP] Suggestions for the next php

2001-12-20 Thread Vincent Stoessel
I would love to see a decent debugger like perl has. Nothing is more frustrating then having to echo and die() to debug code. Especially when you are assigned the task of updating code from a developer that has long gone without leaving any documentation. Stephano Mariani wrote: > Hi! > > I hav

[PHP] Suggestions for the next php

2001-12-20 Thread Stephano Mariani
Hi! I have been a PHP user since version 3.0 came out, and have seen it develop a lot along the way, but theres some things I find it lacks that it really should not. If people agree, I'll glady contribute to the PHP codebase. For example, multi-threading. Looking at the PHP sources, I can see t

[PHP] suggestions

2001-08-28 Thread Glyndower
I have a medium sized db... with about 300 feilds and 15k rows. I need to create a search that will submit user input to seach the db from about 30 different feilds with some of those wildcards. i.e bedrooms, bathrooms, price, pool, city, etc Would using an array for the results page be the

Re: [PHP] suggestions for binary data in database

2001-04-30 Thread Jason Stechschulte
On Fri, Apr 27, 2001 at 03:24:36PM +0200, Ray Hilton wrote: > However, on the site, i am currently storing images in the database, purely > because i can. But i wonder, how much will the server load be affected when > pulling binary data out of the database? compared to the file system? i > ass

[PHP] suggestions for binary data in database

2001-04-27 Thread Ray Hilton
Hi, I have a site, http://rayh.co.uk which is basically my personal home page and nothing more than a hobby. However, on the site, i am currently storing images in the database, purely because i can. But i wonder, how much will the server load be affected when pulling binary data out of the dat