Jump to content

Minor error, help please


ryeman98

Recommended Posts

Ok so I get this error on my web page:
[code]Fatal error: Call to undefined function: login_display() in /home/neosimpl/public_html/register.php on line 179[/code]

And this is my code on like 179:
[code]$log->login_display("Login");[/code]

This may not be enough so here is the 'login_display' part too:
[code]function login_display($title) {

echo('<fieldset><legend>'.$title.'</legend>
<form method="POST" name="login">
Username:<br />
<input type="text" name="username"><br /><br />

Password:<br />
<input type="password" name="password"><br /><br />

<input type="submit" name="login" value="Login!">
</form>
</fieldset>');

}[/code]

Thanks!
Link to comment
https://forums.phpfreaks.com/topic/31431-minor-error-help-please/
Share on other sites

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.