Click here to Skip to main content
15,892,298 members
Articles / Programming Languages / PHP

javascript help php help[

7 Oct 2010CPOL 1.7K   1
// Email Validation Functionfunction email_valid(src){ var emailReg = "^[\\w-_\.+]*[\\w-_\.]\@([\\w]+\\.)+[\\w]+[\\w]$"; var regex = new RegExp(emailReg); return regex.test(src);}// Trim Functionsfunction trim(s){ return rtrim(ltrim(s));}function...
We're sorry, but the article you are trying to view was deleted at 27 Sep 2013.

Please go to the PHP Table of Contents to view the list of available articles in this section.