hob_goblin thanks a mill! re: sessions ;o))
Posted: Tue Oct 15, 2002 6:05 pm
thanks a lot for pointing me in the right direction! What the Williams/lane book on PHP forgets to mention is that there must not be any input preceding the session_register statement! and of course I had it after <HTML> blah blah balh... so with this:
it's working like a charm
thanks again!
Code: Select all
<?php
session_register('login');
session_register('pwd');
session_register('server');
$login=$login_1;
$pwd = $pwd_1;
$server = $server_1;
?>
<HTML>
<HEAD>
<META NAME="KEYWORDS" CONTENT="Db_tools">
<TITLE>Test</TITLE>
</HEAD>
<BODY text="#1c651c" bgcolor="#FFFFff" link="#1c651c" vlink="#1c651c" alink="1c651c" noresize noscroll>
<?
include 'includes.php';thanks again!