Re: [PHP-DB] Page cannot be displayed problems

2004-04-28 Thread Viorel Dragomir
Nope. An obsolete standard. Try use GET or POST instead of PUT. Cheers - Original Message - From: Uzi To: matthew perry ; [EMAIL PROTECTED] Sent: Thursday, April 29, 2004 10:13 Subject: Re: [PHP-DB] Page cannot be displayed problems ??? is that a new standard?

Re: [PHP-DB] Page cannot be displayed problems

2004-04-28 Thread Uzi
??? is that a new standard? - Original Message - From: "matthew perry" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, April 29, 2004 8:11 AM Subject: [PHP-DB] Page cannot be displayed problems > My bosses computer gets a "Page cannot be displayed" message when she > uses

[PHP-DB] Page cannot be displayed problems

2004-04-28 Thread matthew perry
My bosses computer gets a "Page cannot be displayed" message when she uses some of my pages. I have tried to find a pattern as to why this happens on only her computer. I think the problem only occurs when she links to a page that links to a page. Say I have 3 pages: page1.php, page2.php, and

Re: [PHP-DB] First letter

2004-04-28 Thread Lang Sharpe
Cornelia Boenigk wrote: > Hi Matt > > You can teat a string like an Array > $first = $string[0]; > $second = $string[1] > and so on. Actually this method is deprecated. The current best way is to use curly braces. $first = $string{0}; $second = $string{1}; Lang -- PHP Database Mailing List

Re: [PHP-DB] PostgreSQL lib and character case

2004-04-28 Thread Martin Marques
El Wednesday 28 April 2004 03:21, Tumurbaatar S. escribió: > I use pg_fetch_array() to get a record content. But it seems that > to access elements of the returned associative array, I should > use lowercase field names. Is there any way to use case-insensitive > field names? No. PHP is case-sens

RE: [PHP-DB] Request for help on (My)SQL Statement

2004-04-28 Thread John.Bedard
That would work except I'd change the last line to "send email." The problem is the users are showing up to see any alert of new posts on the site. And when they do access PHPBB it will highlight those topics that have new posts anyway. Just got to get them there in the first place. Thanks, Jo

[PHP-DB] Re: PostgreSQL lib and character case

2004-04-28 Thread Hans Lellelid
Hi - Tumurbaatar S. wrote: I use pg_fetch_array() to get a record content. But it seems that to access elements of the returned associative array, I should use lowercase field names. Is there any way to use case-insensitive field names? This is how Postgres works: it always returns arrays indexed

Re: [PHP-DB] MySQL - counting number of instances of a word in a field

2004-04-28 Thread Ignatius Reilly
The functions do not exist. However, FULLTEXT indexes will do much of this work for you. I encourage you to experiment with them. _ - Original Message - From: "Gavin Amm" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 28, 2004 7:18 AM Subject: [P

Re: [PHP-DB] PostgreSQL lib and character case

2004-04-28 Thread Doug Thompson
Tumurbaatar S. wrote: I use pg_fetch_array() to get a record content. But it seems that to access elements of the returned associative array, I should use lowercase field names. Is there any way to use case-insensitive field names? Assuming you want all lower case, convert the form field entry usi

Re: [PHP-DB] scrolling drop down menu

2004-04-28 Thread Tristan . Pretty
Cause I care, here's a suggestion... On any drop downs, add an onmouseout event in javascript. I put together a really simple example, I'm sure you could change it to be more usefull for multiple scoll boxes..? http://www.beertastic.co.uk/matthew.html Good luck...! Tris... matthew perry <[EM

Re: [PHP-DB] MySQL - counting number of instances of a word in a field

2004-04-28 Thread Ignatius Reilly
It is easy to get around this limitation: for each column containing indexable content, create a shadow column containing content prepared for FULLTEXT indexing. I usually do the following: - for each word: - replace all non whitespace, non-blank characters by "_" - right pad to 4 with "_"