Re: [PHP] Order by

2004-08-03 Thread Wesley Furgiuele
Looks like you just forgot some quotes: $specs_query = mysql_query( "select title, information from spec where product=".$id." order by id asc" ); Or just move your quotes to the end -- I think you should be fine: $specs_query = mysql_query( "select title, information from spec where product = $

Re: [PHP] Mail() function performance/optimization question

2002-05-21 Thread Wesley Furgiuele
euing it properly. > > miguel > > On Tue, 21 May 2002, Wesley Furgiuele wrote: >> Adding a mail() step to my page increases the page load time from an average >> of about 2 seconds to nearly 8 seconds. That would be OK if the page >> completed displaying all the tex

[PHP] Mail() function performance/optimization question

2002-05-21 Thread Wesley Furgiuele
Adding a mail() step to my page increases the page load time from an average of about 2 seconds to nearly 8 seconds. That would be OK if the page completed displaying all the text and then just kind of hung there while the mail() function finished. The page I am using, by the way, is a 5-column/

Re: [PHP] Fatcow and MySQL-Front

2001-10-30 Thread Wesley Furgiuele
Rene: This is a pain with FatCow -- I just went through this myself. The only method I was finally able to use was to "SELECT ... INTO OUTFILE" for all my tables; manually recreate the tables using their MySQL tools; then "LOAD DATA INFILE" for each of the outfiles I had created. Overall, their