Jump to content

Fatal error: Call to undefined function


brem13

Recommended Posts

getting Fatal error: Call to undefined function passchanger() in /home2/singlese/public_html/account.php on line 1309

 

code calling function

if ($_SERVER['REQUEST_METHOD'] == 'POST')
{
    	$formValues = $_POST;
    	$formErrors = array();

	if ($_POST['passChange'])
	{
    		if (!VerifyForm($formValues, $formErrors))
    		{
		DisplayForm($formValues, $formErrors);

	}
	passchanger();
}
   	else
   		ProcessForm($formValues);
        
}

function

function passchanger()
	{
		setVisibility('passChanged', 'inline');
	}

 

Link to comment
https://forums.phpfreaks.com/topic/204024-fatal-error-call-to-undefined-function/
Share on other sites

its here

if ($_SERVER['REQUEST_METHOD'] == 'POST')
{
    	$formValues = $_POST;
    	$formErrors = array();

	if ($_POST['passChange'])
	{
    		if (!VerifyForm($formValues, $formErrors))
    		{
		DisplayForm($formValues, $formErrors);

	}
	passchanger();
}
   	else
   		ProcessForm($formValues);
        
}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.