I have a script written that allows a user to login and create a username and password. I am however getting two errors when i call the login.php page up. I am using php version 3 and mysql version 2.0.2
Warning: Failed opening 'bookmark_fns.php' for inclusion in /home/web5/jsm-inc.com/htdocs/php-bin/LOGIN.PHP on line 2
Fatal error: Call to unsupported or undefined function do_html_header() in /home/web5/jsm-inc.com/htdocs/php-bin/LOGIN.PHP on line 3
here is the login.php script
<?
include("bookmark_fns.php");
do_html_header("User Registration");
display_registration_form();
do_html_footer();
?>
Help