Re: [PHP-DB] LIMIT

2006-07-03 Thread JupiterHost.Net
Bastien Koert wrote: Your example predicates that the resultset it passed to an array which you then take the size of, which would only give you the LIMIT value if that clause is specified in the query... I see, I misunderstood the OPs question then they wanted to know that there are

[PHP-DB] Need Help Compiling PHP5 With MS SQL Support

2006-07-03 Thread Mike
I am new to Linux and have NEVER compiled PHP. I have PHP 5 and need to compile it with MS SQL support. Per PHP docs, I installed FreeTDS and tested it and it works. Now I need to (re)compile PHP to get the support I need to access MS SQL databases. I am on a Ubuntu 6.06 version of Linux. Again,

[PHP-DB] Uploading multiple files?

2006-07-03 Thread Skip Evans
Hey all, I have a client who uses a Java applet to allow site members upload multiple files (photos) at a time, as many as 40 or 50 sometimes, to his site. He wants to get away from the applet and use a PHP solution that will fit more seamlessly into his site, but it still must be able to

RE: [PHP-DB] Uploading multiple files?

2006-07-03 Thread Bastien Koert
http://www.sitepoint.com/article/php-gallery-system-minutes is a great aticle with code on this... bastien From: Skip Evans [EMAIL PROTECTED] To: PHP DB php-db@lists.php.net Subject: [PHP-DB] Uploading multiple files? Date: Mon, 03 Jul 2006 15:08:48 -0600 Hey all, I have a client who uses

Re: [PHP-DB] Need Help Compiling PHP5 With MS SQL Support

2006-07-03 Thread Chris
Mike wrote: I am new to Linux and have NEVER compiled PHP. I have PHP 5 and need to compile it with MS SQL support. Per PHP docs, I installed FreeTDS and tested it and it works. Now I need to (re)compile PHP to get the support I need to access MS SQL databases. I am on a Ubuntu 6.06 version of

[PHP-DB] splitting string from database

2006-07-03 Thread Dave W
Hi, I am trying to take a number from a MySQL database and then split it into different strings using a comma. It's for display a cash amount into a table. It's stored in the database as something like 100 and I want for it to display as 1,000,000 on the table. This is what I got so far:

Re: [PHP-DB] splitting string from database

2006-07-03 Thread Chris
Dave W wrote: Hi, I am trying to take a number from a MySQL database and then split it into different strings using a comma. It's for display a cash amount into a table. It's stored in the database as something like 100 and I want for it to display as 1,000,000 on the table.