Re: [PHP-DB] forum test

2002-11-11 Thread dwalker
Went to your page. You might try to implement client side browser testing and redirect visitors to functional pages rather than display a message suggesting your page can't be viewed. Most people would probably prefer not to 'upgrade' just to see a single site they hadn't visited before.

Re: [PHP-DB] sort by date

2002-11-06 Thread dwalker
What archive and how do I access it? -Original Message- From: Hutchins, Richard [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Wednesday, November 06, 2002 10:50 AM Subject: RE: [PHP-DB] sort by date Just to weigh in on the tail end here, a FAQ of the top N items would

Re: [PHP-DB] PHP/MySQL and passing url params

2002-10-28 Thread dwalker
Are you working with the PHP model that came with MX or are you working with PHAKT's PHP model for UD -Original Message- From: alex hogan [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Sunday, October 27, 2002 6:43 PM Subject: [PHP-DB] PHP/MySQL and passing url params Hi

Re: [PHP-DB] PHP/MySQL and passing url params

2002-10-28 Thread dwalker
I discovered bugs with PHAKT PHP for UD4 but was able to create work arounds. Did you make the mistake of installing the XME phakt 1.5.x module?? -Original Message- From: alex hogan [EMAIL PROTECTED] To: 'dwalker' [EMAIL PROTECTED]; [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Monday

[PHP-DB] String extraction from blobs. Extracted string to be placed into field within another table.

2002-10-20 Thread dwalker
What is the most effective method of extracting from a blob specified text to be placed into another table field. This email message and all attachments transmitted herewith are tradesecret and/or confidential information intended only for theviewing and use of addressee. If the reader

[PHP-DB] MySQL Insert Select statement

2002-10-19 Thread dwalker
Whilereading the MySQL manual for INSERT SELECT, I was not able to determine how to includeall 5 fields of one table into another table (containing 100 fields) into SPECIFIC data fields. Do I need to explicitly list all the fields within the table of 5 fields? If so, would the statement be:

Re: [PHP-DB] MySQL Insert Select statement

2002-10-19 Thread dwalker
. -Original Message- From: John W. Holmes [EMAIL PROTECTED] To: 'dwalker' [EMAIL PROTECTED]; 'professional php' [EMAIL PROTECTED]; [EMAIL PROTECTED] [EMAIL PROTECTED]; [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Saturday, October 19, 2002 7:24 PM Subject: RE: [PHP-DB] MySQL Insert Select statement That's

Re: [PHP-DB] Variable won't be passed from HTTP address bar

2002-10-18 Thread dwalker
Perhaps , $action is not equal to test. Try initializing the $action variable - instead of leaving it uninitialized. ?php $action = test; if($action==test) echo Test; } ? -Original Message- From: Michel Bakkenes - bakkenes.net [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL

[PHP-DB] Re: [PHP] Re: Need help with HTTP-Authentication

2002-10-16 Thread dwalker
direct authentication with http headers ?php file://if some_variable is NOT set then redirect to some other location session_start(); if (!isset($HTTP_GET_VARS[some_variable])) { header( 'Location: http://www.yourfavoritepage.com/login.php?v=nogo' ); } ? html !-- Your html code goes

Re: [PHP-DB] Passing string variable to HTML TITLE tag fails within Netscape but works well within IE.

2002-10-16 Thread dwalker
Just what I was looking for -- thank you.Putting together an entirely dynamic site was difficult enough -- I need to avoid doing any EXTRA stuff when ever possible. Again, thanks. THIS E-MAIL MESSAGE AND ALL ATTACHMENTS TRANSMITTED HEREWITH ARE TRADE SECRET AND/OR CONFIDENTIAL INFORMATION