[PHP-DB] Large Arrays in a batch procedure

2004-04-07 Thread antonio bernabei
Hi, I have a problem. On a small lan I need to process a table with about 3 records. The work is to apply a formula to some fields of each record and update another field of the same table. I run php on a win2000 professional system and the first approach was to make a for cycle in which I

Re: [PHP-DB] Large Arrays in a batch procedure

2004-04-07 Thread Viorel Dragomir
First it's not such a good idea to show 30k records to a browser.. If you use this script in console it's ok. I don't think that the problems comes from the data size.. check your for.. maybe has an infinite loop. Anyway if the problem comes from the data size you can find out by reading only

[PHP-DB] Re: Large Arrays in a batch procedure

2004-04-07 Thread J.Veenhuijsen
Probably your scripts time out after 30 seconds. Try : set_time_limit(0); in your script! JOchem Antonio Bernabei wrote: Hi, I have a problem. On a small lan I need to process a table with about 3 records. The work is to apply a formula to some fields of each record and update another field

RE: [PHP-DB] Stumped with proper query and display

2004-04-07 Thread Mignon Hunter
I never saw this email come across - I think it got caught in spam software on 4-1 Well I'm still working on this off and on - still having problems :| I couldnt get the foreach to work properly..I keep getting: Invalid argument supplied

Re: [PHP-DB] include function

2004-04-07 Thread Craig Hoffman
Ok, I figured it out. I am using jpgraph and I need to place the include statement next to the start of PHP. ? included statement __ Craig Hoffman - eClimb Media v: (847) 644 - 8914 f: (847) 866 - 1946 e: [EMAIL PROTECTED] w: www.eclimb.net

Re: [PHP-DB] Stumped with proper query and display

2004-04-07 Thread Jason Wong
On Wednesday 07 April 2004 21:18, Mignon Hunter wrote: I never saw this email come across - I think it got caught in spam software on 4-1 Check the archives. Well I'm still working on this off and on - still having problems :| I

[PHP-DB] File there or not?

2004-04-07 Thread Robert Sossomon
Still a newbie and clums at this stuff and am running into a brick wall with this. I need to pull an item out of the database, turn it to lowercase, and then look to see if the file is located in another directory. If it is then it prints out one thing, if not it prints out another. What I am

Re: [PHP-DB] File there or not?

2004-04-07 Thread John W. Holmes
From: Robert Sossomon [EMAIL PROTECTED] My question: How do I pull the item and turn it to lower? Strtolower? strtolower() How do I check it against a directory to see if the file exists? file_exists() Imagine that. :) ---John Holmes... -- PHP Database Mailing List

[PHP-DB] pdf editor

2004-04-07 Thread matthew perry
Does anyone know a free pdf editor? -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-DB] File there or not?

2004-04-07 Thread Robert Sossomon
OK, so I feel a complete ID10T... Why is it always the simple things which I think about after I send out the email that comes and bites me in the butt?? Oh well, thanks for the kick in the pants and commands! Robert -Original Message- From: John W. Holmes [mailto:[EMAIL PROTECTED]

Re: [PHP-DB] File there or not?

2004-04-07 Thread John W. Holmes
From: Robert Sossomon [EMAIL PROTECTED] Oh well, thanks for the kick in the pants and commands! That's what I'm here for, to get into pants... or something... um, back to work. ---John Holmes... -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP-DB] pdf editor

2004-04-07 Thread matthew perry
I use Windows XP. Really all I need to do is remove a single line in a pdf file and I can't convince myself to spend $749 for Acrobat Pro to do it. - Matt On 7 Apr 2004, at 16:34, matthew perry wrote: Does anyone know a free pdf editor? what platform do you require it for? -- Mike Karthauser

Re: [PHP-DB] pdf editor

2004-04-07 Thread Jeffrey Moss
I think someone else asked about a problem where they had text running off the side of the page, heres everything I've ever learned about PS/PDF. GNU ghostscript is all you really need for editing pdf's. Usually the text appears as plain text once you convert the PDF to a PS with pdf2ps, and you

[PHP-DB] Mail() - Preposterous Accusation

2004-04-07 Thread Ryan Jameson (USA)
I know this isn't technically DB related but this is the list that I use. I'd just like to know if anyone else thinks the below statement is accurate. If it is, why hasn't the mail function been modified in the more recent builds? I've been using PHP since it was invented never had a problem with

[PHP-DB] Re: Mail() - Preposterous Accusation

2004-04-07 Thread Justin Patrin
Ryan Jameson wrote: I know this isn't technically DB related but this is the list that I use. I'd just like to know if anyone else thinks the below statement is accurate. If it is, why hasn't the mail function been modified in the more recent builds? I've been using PHP since it was invented

Re: [PHP-DB] Rounding

2004-04-07 Thread Jason Wong
On Thursday 08 April 2004 09:56, Ng Hwee Hwee wrote: is there a way to do rounding up to the nearest tenth? can't use ROUND() cos i need something like this: 6.11 -- 6.2 6.15 -- 6.2 6.19 -- 6.2 6.20 -- 6.2 i know there is a ceil() function but that rounds up to the nearest integer.. i

Re: [PHP-DB] Rounding

2004-04-07 Thread Ng Hwee Hwee
whoa! thanks so much! you guys are smart! hahaha.. i just love this list and all the helpful souls out there! :o) - Original Message - From: Larry E. Ullman [EMAIL PROTECTED] To: Ng Hwee Hwee [EMAIL PROTECTED] Cc: DBList [EMAIL PROTECTED] Sent: Thursday, April 08, 2004 10:06 AM