Re: [PHP-DB] php-db@lists.php.net is currently protecting themselves from receiving junk mail using Spamcease Just this once, click the link below so I can receive your emails.

2004-08-04 Thread Colin Kettenacker
I got this for the PHP-General list. I think it's bogus but it would be nice to get a confirmation from the list admin. ck -- Cheap Domain Registration | Web Hosting | Email Packages | + more Fantastic prices -- Even better service. http://www.hosttohost.net Pablo M. Rivas [EMAIL PROTECTED] on

[PHP-DB] Is ****_fetch_row the fastest way to do this?

2003-07-07 Thread Colin Kettenacker
I am using odbc_fetch_row to loop through a SQL select search result row by row. Is this the fastest way to collect the data from the database search result? Is there no way to collect all the data into an array without looping through the search result row by row? Sorry for the newbie question.

[PHP-DB] What are your DB driven/template strategies?

2003-09-02 Thread Colin Kettenacker
I, like many here, have created a database driven/template systems using PHP and the database engine of your choice. However, I am still stuck with having to create directories on the server for every page on the website with the same initialization PHP file that kicks off the whole process. I'm g

Re: [PHP-DB] What are your DB driven/template strategies?

2003-09-03 Thread Colin Kettenacker
Thanks Daniel, Alexey and Colbey. I will look into all your suggestions. The custom 404 error page to redirect would definitely be easier to implement than my manual redirect suggestion earlier as I would still have to type out each URL in the .htaccess file. I have not worked with mod_rewrites b

Re: [PHP-DB] Variables not working within Functions

2003-10-19 Thread Colin Kettenacker
Or pass the variable $username as an argument into your function: function LoginSystem($username) { // your function code } LoginSystem($username); ck -- Cheap Domain Registration | Web Hosting | Email Packages | + more Fantastic prices -- Even better service. http://www.hosttohost.net Chris