Bravo List

Bravo List (http://www.bvlist.com/index.php)
-   Community Cafe (http://www.bvlist.com/forumdisplay.php?f=18)
-   -   help for mail (http://www.bvlist.com/showthread.php?t=3647)

irfan 23rd October 2009 00:22

help for mail
 
hey guys i get this error in Fatal error: Call to undefined function is_valid_email() in C:\xampp\htdocs\adduser.php on line 15

is it because im using xammp if so how should it resolve

Nightcrawler 23rd October 2009 10:06

Quote:

Originally Posted by irfan (Post 16787)
hey guys i get this error in Fatal error: Call to undefined function is_valid_email() in C:\xampp\htdocs\adduser.php on line 15

is it because im using xammp if so how should it resolve

It appears the function is not being found in the file you are using maybe not defined for example the function will be in a file called funtions.php or whatever but the file you are using does not include the file so the function is non existent post up the adduser.php.

irfan 23rd October 2009 12:08

1 Attachment(s)
therre you go. :)

joeroberts 23rd October 2009 14:19

add this to line 5
PHP Code:

function is_valid_email($email) {
    if (
ereg("^([A-Za-z0-9]+_+)|([A-Za-z0-9]+\-+)|([A-Za-z0-9]+\.+)|([A-Za-z0-9]+\++))*[A-Za-z0-9]+@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$"$email)) 
        return 
true;
    else
        return 
false;



irfan 23rd October 2009 15:42

1 Attachment(s)
also one more question i tried adding a search box in browse.php but it comes up messed up, any ways u can add to it?

heres the attached file so u can add the codes to it.

thanks guys


All times are GMT +2. The time now is 17:53.

Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.