Hi,
I just installed 4.0.6 on a Win2KProf, MySQL 3.23.32; Apache/1.3.20 (Win32) PHP/4.0.6
My code is simple and worked on a Linux box on my ISP. I just wanted to run it local.
I'm getting an error on the second line of my code (pretty sad that early!). So this must be a configuration problem. I'm new at this configuration portion and could use u'r help.
THE ERROR MSG:
Warning: Use of undefined constant php_track_vars - assumed 'php_track_vars' in c:\alon\web\login.php on line 2
THE CODE:
<?php php_track_vars?>
<?php
include "config.inc.php4";
include "php-dbi.inc.php4";
include "connect.inc.php4";
include "misc.inc.php4";
?>
<HEAD>
<TITLE>Admin Login</TITLE>
<?php include "styles.inc.php4"; ?>
</HEAD>
<BODY CLASS=body>
<H1>Admin login</H1>
<FORM METHOD="POST" ACTION="login_handler.php">
<table>
<tr>
<td>Password:</td>
<td><INPUT TYPE="password" NAME="Password" SIZE=32></td>
</tr>
</table>
<INPUT TYPE="submit" VALUE="Login">
</FORM>
<?php
include "footer.inc.php4";
?>
Thanks for your help.
-Alon.
asolell@hotmail.com