I am trying to use PHPlogin to speed up a little application I am building. It's a simple set of web-pages that will allow researchers all over the country to enter the data they collect - in the old days we had to do all this by paper!
I've hit a problem almost as soon as I have started using it - I have tried to make the test page work from your documentation, but every time I try to include the PHP Login include file, it prevents the rest of the page from outputing:
So for example, this code:
<?
// First Page
include('php_lib_login_includes/login.inc.php');
?>
<head><title>blink tag defenders unite!</title></head>
<body>
<h1>save the blink tag!</h1>
<p>
blink defenders can log in here.
</p>
<?
// here is the call to show our login form
lib_login_show_login_form($error);
?>
</body>
Produces this output:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HEAD>
<META http-equiv=Content-Type content="text/html; charset=windows-1252"></HEAD>
<BODY></BODY>
Thanks in advance for any assistance you might be able to offer!
Sal