[PHP-DB] Re: How To Detrmine Session End

2004-08-04 Thread Josh Acecool M
Add a timeout value, if user does not refresh page or have any activity in X seconds, logout or do not list. Mubashar-Hotmail [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi all, In the scenario of Who are online now on the site, how we track user If a he don't click on Logout

Re: [PHP-DB] MySQL fulltext search with InnoDB table?

2004-08-04 Thread Brent Baisley
I don't think there is anything you can do that won't require a full table scan. I think some people break out the field they want to do a full text search on into another table using the MyISAM format. So your core table is InnoDB and your full text search fields are in a related table that

[PHP-DB] Re: sendmail

2004-08-04 Thread Aaron Todd
I dont know how to be more specific. It just doesnt work. There is no error. The program runs and sometimes it sends the email and sometimes it doesnt. I've looked at all the log files that I know about and havent seen anything that looks like an email error. Is there any other

Re: [PHP-DB] Re: sendmail

2004-08-04 Thread Jason Wong
On Wednesday 04 August 2004 20:47, Aaron Todd wrote: I dont know how to be more specific. It just doesnt work. There is no error. The program runs and sometimes it sends the email and sometimes it doesnt. I've looked at all the log files that I know about and havent seen anything that

Re: [PHP-DB] Re: sendmail

2004-08-04 Thread Pablo M. Rivas
Hello Aaron, AT Is there any tweaking with mail()? AT I have it working, but it seems to not always send the email. Mainly one AT right after the other. I filling a web form and then sending the data off AT to my email. But then I do a refresh to clear the form and do it again with AT

[PHP-DB] Re: sendmail

2004-08-04 Thread Manuel Lemos
Hello, On 08/04/2004 09:47 AM, Aaron Todd wrote: I dont know how to be more specific. It just doesnt work. There is no error. The program runs and sometimes it sends the email and sometimes it doesnt. I've looked at all the log files that I know about and havent seen anything that looks like

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

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 Pablo M. Rivas
Hello Josh, JAM What is this? JAM I received this E-Mail, and the link goes to something other than PHP.net JAM [EMAIL PROTECTED] is currently protecting themselves from receiving junk JAM mail using Spamcease Just this once, click the link below so I can receive JAM your emails. JAM You won't

[PHP-DB] Regular Expression

2004-08-04 Thread Ng Hwee Hwee
Hi all, I somehow just couldn't get my regular expression syntax correct. Will you please help me? some examples of my valid string is: sinx0401-001-45 hkgx0403-020-12 jktx0402-000-01 bkkx0407-013-44 the definition is: 1st 4 characters - can only be sinx or hkgx or bkkx or jktx next 4

Re: [PHP-DB] Regular Expression

2004-08-04 Thread John Holmes
Ng Hwee Hwee wrote: Hi all, I somehow just couldn't get my regular expression syntax correct. Will you please help me? some examples of my valid string is: sinx0401-001-45 hkgx0403-020-12 jktx0402-000-01 bkkx0407-013-44 the definition is: 1st 4 characters - can only be sinx or hkgx or bkkx or

Re: [PHP-DB] Regular Expression

2004-08-04 Thread Ng Hwee Hwee
thanx!!! it worked like a charm! =) just a question, i've tried adding a ^ to the front of your expressions and a $ to the end of your expression and it still worked.. but is it recommended? why didn't you use them? ^(sin|hkg|bkk|jkt)x[0-9]{4}-[0-9]{3}-[0-9]{2}$ hwee - Original Message

Re: [PHP-DB] Regular Expression

2004-08-04 Thread John Holmes
Ng Hwee Hwee wrote: (sin|hkg|bkk|jkt)x[0-9]{4}-[0-9]{3}-[0-9]{2} thanx!!! it worked like a charm! =) just a question, i've tried adding a ^ to the front of your expressions and a $ to the end of your expression and it still worked.. but is it recommended? why didn't you use them?

Re: [PHP-DB] Regular Expression

2004-08-04 Thread Ng Hwee Hwee
thanx a million!! you really saved my day!! :o) hwee - Original Message - From: John Holmes [EMAIL PROTECTED] To: Ng Hwee Hwee [EMAIL PROTECTED] Cc: PHP DB List [EMAIL PROTECTED] Sent: Thursday, August 05, 2004 11:05 AM Subject: Re: [PHP-DB] Regular Expression Ng Hwee Hwee wrote: