Can someone tell me why I cant get anything to echo properly with this?
<?php
session_start();
$_SESSION = $_POST;
$_SESSION = $_POST;
$_SESSION = $_POST;
$_SESSION = $_POST;
$_SESSION = $_POST;
?> ... This is on one page
<h2><a href="Conference_Start.php">Personal Information</a></h2>
<p>Company Name: <?php echo $_SESSION ?> <br />First Name: <?php echo $_SESSION ?> <br />Last Name: <?php echo $_SESSION?> <br />Phone: <?php echo $_SESSION?> <br />Email: <?php echo $_SESSION?> </p></td></tr></table>
I want the stuff on the first page to come out into a table on the 2nd page