PHP Classes

editing header html

Recommend this page to a friend!

      Simple Login  >  All threads  >  editing header html  >  (Un) Subscribe thread alerts  
Subject:editing header html
Summary:php warning while customizing the class
Messages:1
Author:dexter
Date:2005-09-23 17:57:48
 

  1. editing header html   Reply   Report abuse  
Picture of dexter dexter - 2005-09-23 17:57:48
I've tryied your class and I must say it works great.

one issue I've found is that if you need to integrate in login form into a website template you get a phpwarning due to a double header set.

so I've only menaged to style the admin form this way:

<?php
require "simpleLogin.php";
$sl = new simpleLogin();
$sl->CheckLogin();// this will not display the page if not logged
include( "file-to-custom-style-html-output.php");
$sl->ManageUsers(); //Put this line if you wand the admin to see the manager interface
?>

Maybe splitting http header and login form in 2 different object could solve this problem...any idea?