Re: [PHP] PHP and Ajax?
There is a good intro to the whole XMLHttpRequest ("Ajax") process on Webmonkey right now: http://webmonkey.wired.com/webmonkey/05/16/index4a.html Good for those of us slower on the uptake... jason sweeney jason.designshift.com Chris W. Parker wrote: Jeremiah Johnson <mailto:[EMAIL PROTECTED]> on Thursday, April 28, 2005 11:28 AM said: Does anyone have any references on using PHP and Ajax? I caught the news on PHP Architect about the webcast they are doing in May and it sounds like an interesting technology, but I can't wait, of course :)... and I wanted to learn as much as I could before their presentation. Any pointers? If you want to "learn as much as I could" then you should first learn to query google. Try the second result. HTH! Chris. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] Can someone help me build a regular expression?
Give this a shot: ^[0-9]{2,3}\.[0-9]$ Returns regex that begins with 2-3 digits, followed by a period, and ends with one digit. jason sweeney jason.designshift.com [EMAIL PROTECTED] wrote: Hi All, I've sucessfully got a JavaScript validating some text boxes to make sure that only numbers exist.I cheated and downloaded a regular expression someon else had used and that works nicely. I wish to validate the text box in the format of: xXX.X With the upper case Xs being a required number and the lower case x being allowed but not needed. Can anybody help me? Ta Matthew -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] Valid email address syntax script?
Borrowed with great reverence from http://ca3.php.net/function.mail: $regex = '^[_a-z0-9-]+(\.[_a-z0-9-]+)[EMAIL PROTECTED](\.[a-z0-9-]{2,})+$'; if (eregi($regex, $email)) return true; else return false; jason sweeney jason.designshift.com JM wrote: Does anyone have a nice email address syntax checking script they'd like to share? Regular expression-based anyone? TIA. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
Re: [PHP] Delay?
Jack Jackson wrote: Has anyone else noticed significant delays in messages getting posted? No, no delay on my end. So... any word on the release date for PHP 3? -- jason sweeney jason.designshift.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php