ketosteopyFem
New Member
I have session variables that are posted from a form on another php page, and I can echo them by using:\[code\]<?php $_SESSION['newsletterSignup'] = $_POST['newsletterSignup'];echo "Email = ". $_SESSION['newsletterSignup'];?> \[/code\]But I can't seem to insert these into a HTML form field:\[code\]<input type="text" name="email" id="email" size="36" "value="http://stackoverflow.com/questions/15828975/<?php echo $_SESSION['newsletterSignup'];?>" class="text-input" onBlur="emailval()" />\[/code\]