Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Undefined variable #22

Open
itsmohit opened this issue Feb 8, 2014 · 1 comment
Open

Undefined variable #22

itsmohit opened this issue Feb 8, 2014 · 1 comment

Comments

@itsmohit
Copy link

itsmohit commented Feb 8, 2014

On registration/Sign Up page it shows:

Undefined variable: message in C:\xampp\htdocs\userpie\register.php on line 99

@ctdegroot
Copy link

I found the following code will fix the error... only echo "message" if it is defined, otherwise echo an empty string.

    <div id="success">

       <p><?php echo (isset($message) ? $message : ""); ?></p>

    </div>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants