Re: [PHP-DB] Google Style Search Results

2005-12-09 Thread Julien Bonastre
Sure, Firstly, thank you for the credit, that was only my second mid-scale project, coded ground up in Textpad 4 ;-) enough patting my own back, onto business.. http://aries.the-spectrum.org/webdev/wawd/forums/search.php?q=sufficient%2Blarge&st=post&sb%5B%5D=*&maxres=25&ob=datetime&ot=DESC

Re: [PHP-DB] Google Style Search Results

2005-12-09 Thread Graham Cossey
On 12/9/05, Julien Bonastre <[EMAIL PROTECTED]> wrote: > http://aries.the-spectrum.org/webdev/wawd/forums/search.php?q=sufficient%2Blarge&st=post&sb%5B%5D=*&maxres=25&ob=datetime&ot=DESC > > > All I did was conjure up a regular expression that basically just matches > words :-) haha ironically..

[PHP-DB] inserting data into Oracle tables

2005-12-09 Thread David Skyers
Is there a standard for inserting data into Oracle tables from a user input field in PHP? Most Oracle tables will have a limit on the amount characters such as Name VARCHAR2(60 BYTE) - this means the maximum amount of characters allowed is 60. If you use special characters in PHP such as ente

RE: [PHP-DB] Quick question

2005-12-09 Thread Ford, Mike
On 08 December 2005 20:53, Chris Payne wrote: > Hi there everyone, > > > > How do I set the following items with ini_set()? I looked at > the manual but > when I try nothing happens: > > > > * file_uploads > * upload_max_filesize > * max_input_time > * memory_limit > * m

Re: [PHP-DB] Manipulating text

2005-12-09 Thread Julien Bonastre
Quite right.. BU: and I quote: >> > $variable = "play_time"; >> > >> > how may I remove "play_" from $variable and just have $variable equal >> > to >> > "time"? To me, that is asking to strip or remove the string "play_" from the string "play_time" Am I wrong? Especially when

Re: [PHP-DB] Google Style Search Results

2005-12-09 Thread Julien Bonastre
Yay, Questionnaire time I love this part of the game a) I'm not very familiar with regex at all and was wondering if you could tell me how your regex would handle two matched search strings that exist within a few words of each other in the text. For example "A larger server would be sufficien

Fw: [PHP-DB] Quick question

2005-12-09 Thread Julien Bonastre
---oOo--- Allowing users to execute CGI scripts in any directory should only be considered if: ... a.. You have no users, and nobody ever visits your server. ... Extracted Quote: Security Tips - Apache HTTP Server ---oOo--- --oOo---oOo-- Julien Bonastre [The_RadiX] The-Spe

Re: [PHP-DB] inserting data into Oracle tables

2005-12-09 Thread Falk Sauer
Hi David, Am Fr 9.Dezember 2005 11:00 schrieb David Skyers: > Is there a standard for inserting data into Oracle tables from a user input > field in PHP? > > Most Oracle tables will have a limit on the amount characters such as > > Name VARCHAR2(60 BYTE) - this means the maximum amount of characte

Re: [PHP-DB] Google Style Search Results

2005-12-09 Thread Graham Cossey
On 12/9/05, Julien Bonastre <[EMAIL PROTECTED]> wrote: > Yay, Questionnaire time > > I love this part of the game > > > > a) I'm not very familiar with regex at all and was wondering if you could > tell me how your regex would handle two matched search strings that > exist within a few words of eac

Re: [PHP-DB] Google Style Search Results

2005-12-09 Thread Julien Bonastre
Thats ok, sorry to have come across a bit 'narky' in that response by the way I was just under some pressure at the time, I should really compose myself more before trying to lend a hand or some advice and head to the deep end in my ramblings.. haha There really isn't much to Regex to be hon

[PHP-DB] php5 with imap

2005-12-09 Thread Benjamin Adams
I'm trying to build and install php-5.1.1 on My Mac OS X 10.4.3 I can build it with out imap but can't get it to work when I enter it in: ./configure --prefix=/usr/local/php --with-apxs --enable-force-cgi- reidirect --enable-fast-cgi --with-openssl=/usr --with-dom=/usr/local/ php --with-gd -

[PHP-DB] Ending session

2005-12-09 Thread Ron Piggott (PHP)
How do you actually end $_session variables so the session actually ends? I found the session_write_close() command. I am not sure if this is the correct command or not. One prime example I am using is a $_session variable to track which user account is active. I want to have a log off button

Re: [PHP-DB] Ending session

2005-12-09 Thread Miles Thompson
At 05:30 PM 12/9/2005, Ron Piggott (PHP) wrote: How do you actually end $_session variables so the session actually ends? I found the session_write_close() command. I am not sure if this is the correct command or not. One prime example I am using is a $_session variable to track which user acc

Fw: [PHP-DB] Google Style Search Results

2005-12-09 Thread Julien Bonastre
- Original Message - From: Ming Xiao To: Julien Bonastre Sent: Friday, December 09, 2005 7:04 PM Subject: Re: [PHP-DB] Google Style Search Results hello everybody who knows ajax , I want to make a website use ajax technolgy. thanks,everybody! 2005/12/9, Julien Bonastre <[EMAIL PROT

Re: [PHP-DB] Ending session

2005-12-09 Thread Julien Bonastre
Wow Miles You certainly want to kill that session !! Well done ;-) Well I must admit I use a similiar tactic for user-leech session cookies: function sessionKill() { global $SYSTEM,$DB; mysql_query("delete from sys_activity where user_name='".$MEMBER["user_name"]."'",$DB); session_unset(

Re: [PHP-DB] Emails Bouncing

2005-12-09 Thread Julien Bonastre
I have the same issue :-) And I recently noticed another email address popped up in the error too.. Should we really be getting these mail daemon errors? or should the list bot?? Has this always been the case? I'm only new to this list... Ciao! ---oOo--- Allowing users to execute CGI s