So does the blank line in the following piece of code constitute as being as 'output'?
PHP Code:
<?php
session_start();
/* load in main configuration file for application */
require_once('..\application.php');
require_once('user.php');
/* Checks to see whether the HTML <form> has been posted */
if(isset($_POST['login_submit'])) {
$user = new member_class();
$user->check_login($_POST['username'], $_POST['password'], $_POST['remember']);
}// End POST
In the above code, the 'check_login() function is called from the user.php file, where the cookie is called.
Thanks
Tryst
Bookmarks