I'm running a Win 2000 pro machine Apache 2 and PHP4. Everything seems to be working except when I try to call a variable into another file. Here are the files from the tutorial I'm doing.
Just so you don't need to go through all the code below here is the result I see.
Nickname:
Full Name:
Memo:
The variables don't seem to be passing through. I tested this piece and it works just fine.
<?php
phpinfo()
?>
Hope this helps?
Moose
<HEAD>
<TITLE>Project 4-1</TITLE>
</HEAD>
<BODY>
<!-- File p-4-1.html -->
<FORM METHOD="POST" ACTION="p-4-1.php">
<H2>Contact List</H2>
<BR>Nickname:
<BR><INPUT TYPE="TEXT" NAME="Nickname">
<BR>
<BR>Full Name:
<BR><INPUT TYPE="TEXT" NAME="Fullname">
<BR>
<BR>Memo:
<BR><TEXTAREA NAME="Memo" ROWS="4" COLS="40" WRAP="PHYSICAL">
</TEXTAREA>
<BR>
<BR>
<INPUT TYPE="SUBMIT">
</FORM>
</BODY>
<?php
// File p-4-1.php
echo "<BR>Nickname=$Nickname";
echo "<BR>Fullname=$Fullname";
echo "<BR>Memo=$Memo";
?>