Re: [PHP-DB] File input from form not detected

2003-05-30 Thread Paul Burney
on 05/30/2003 9:16 AM, Dewi Wahyuni at [EMAIL PROTECTED] appended the following bits to my mbox: > if($userfile) it fails. BUT $userfile_name is able to display the filename . I just tried the script on your site... It looks like you are trying to fopen the actual file name. You need to fopen

RE: [PHP-DB] File input from form not detected

2003-05-30 Thread Hutchins, Richard
If I understand your post and desired outcome correctly, I think the problem would lie in the upload.php file. You may need to post the code from that file for anybody to really help you out. Rich > -Original Message- > From: Dewi Wahyuni [mailto:[EMAIL PROTECTED] > Sent: Friday, May 30,

Re: [PHP-DB] File input from form not detected

2003-05-30 Thread Paul Burney
on 05/30/2003 9:16 AM, Dewi Wahyuni at [EMAIL PROTECTED] appended the following bits to my mbox: > if($userfile) it fails. BUT $userfile_name is able to display the filename . > > With print_f($HTTP_POST_VARS) also the userfile was not displayed, only other > input element which is Maximum file

Re: [PHP-DB] Optimize following Mysql-Query

2003-05-30 Thread Paul Burney
on 05/30/2003 7:49 AM, André Sannerholt at [EMAIL PROTECTED] appended the following bits to my mbox: > I have the following Mysql-Query that returns correct information, but it > just needs to much time (3-4 Minutes!!) Can you help me to optimize it? Since subselects are fairly new to MySQL and o

[PHP-DB] File input from form not detected

2003-05-30 Thread Dewi Wahyuni
Hi, following my earlier post My input file from form in eg upload.html was not detected in the upload.php (handler) The example can be seen in http://www.busybees.com.my/tryout/upload.html I tried uploading using the which is supposed to be captured by the php as $userfile (as far as I know)

[PHP-DB] Optimize following Mysql-Query

2003-05-30 Thread André Sannerholt
Hi Everyone, I have the following Mysql-Query that returns correct information, but it just needs to much time (3-4 Minutes!!) Can you help me to optimize it? $query= "SELECT * FROM Firmennamen INNER JOIN Master ON Firmennamen.ID=Master.FN WHERE Master.FN IN (SELECT Master.FN FROM Master INNER JO

Re: [PHP-DB] User auth system

2003-05-30 Thread Becoming Digital
Searching is good for you, just like exercise. :) If you check the archives, you'll see a lot of posts recommending you visit the PHP Classes Repository or the PEAR site. If you're not sure where they are, refer back to the first line. Edward Dudlik Becoming Digital www.becomingdigital.com ---

[PHP-DB] User auth system

2003-05-30 Thread Ronan Chilvers
Hi folks Does anyone know of an OS user authentication and management framework (OS cos I want to study the code!!!). I'm in the process of putting together some definitions and specs for an open source php/mysql project and need to develop a robust and flexible user auth / validation system m

Re: [PHP-DB] - Shopping cart software

2003-05-30 Thread Ruprecht Helms
Hi Mignon Hunter, > Can anyone recommend shopping cart software; does not have to be open > source. I need to set up pretty fast and be able to calculate the > different sales tax for anywhere, USA. (International should be ok). have a look on http://www.phpshop.org. Regards, Ruprecht ---

Re: [PHP-DB] - Shopping cart software

2003-05-30 Thread David Shugarts
A lot of hosted servers are already set up for Miva Merchant. The basic store/shopping cart is very quick to set up. --Dave Shugarts > > Can anyone recommend shopping cart software; does not have to be open > source. I need to set up pretty fast and be able to calculate the > different sales ta

Re: [PHP-DB] - Shopping cart software

2003-05-30 Thread Becoming Digital
osCommerce http://www.oscommerce.com Edward Dudlik Becoming Digital www.becomingdigital.com - Original Message - From: "Mignon Hunter" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, 29 May, 2003 16:47 Subject: [PHP-DB] - Shopping cart software Can anyone recommend shoppin

[PHP-DB] - Shopping cart software

2003-05-30 Thread Mignon Hunter
Can anyone recommend shopping cart software; does not have to be open source. I need to set up pretty fast and be able to calculate the different sales tax for anywhere, USA. (International should be ok). Already have cc processor lined up. Any suggestions would be appreciated. Thx -- M Hunt

Re: [PHP-DB] Query loop issues.

2003-05-30 Thread CPT John W. Holmes
> I'm having a problem with looping a query here is the skeleton of the code: > > $query_result = mysql_query("SELECT * FROM Boats WHERE Serial='$serial' OR > Make='$make'") > if(mysql_num_rows($query_result) > 1) > { > while($row = mysql_fetch_array($query_result, MYSQL_NUM)) > { > > } > } >

Re: [PHP-DB] Query loop issues.

2003-05-30 Thread Andrew D. Luebke
From the docs it appears that they are functionally equivalent, with mysql_fetch_array having a few more options for indexing the array. Andrew. At 09:51 AM 5/29/2003, you wrote: shouldn't you be fetching a row and not an array? while($row = mysql_fetch_row($query_result, MYSQL_NUM)) rick -

[PHP-DB] Query loop issues.

2003-05-30 Thread Andrew D. Luebke
I'm having a problem with looping a query here is the skeleton of the code: $query_result = mysql_query("SELECT * FROM Boats WHERE Serial='$serial' OR Make='$make'") if(mysql_num_rows($query_result) > 1) { while($row = mysql_fetch_array($query_result, MYSQL_NUM)) { } } else

Re: [PHP-DB] Operation must use an updateable query

2003-05-30 Thread Ronan Chilvers
It got me several times, even after I'd worked out the problem Many's the slip twixt database and script !! ;-) Ronan e: [EMAIL PROTECTED] t: 01903 739 997 w: www.thelittledot.com The Little Dot is a partnership of Ronan Chilvers and Giles Webberley On 29 May,2003 at 10:55 Chad Chad wrote:

Re: [PHP-DB] Multiple inserts revisited

2003-05-30 Thread Becoming Digital
Yes, it does what I want, but perhaps not what I described. My goal was to find a way to add values to the actual query, which this does nicely. Yours, thank you very much, is even nicer. :) Edward Dudlik Becoming Digital www.becomingdigital.com - Original Message - From: "Ford, Mike [

Re: [PHP-DB] Operation must use an updateable query

2003-05-30 Thread Chad
I can't believe it was that simple. Thank You So much Ronan! -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php