Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

unexpected T_String Error ! Please Help!!!

Status
Not open for further replies.

about2flip

Technical User
Nov 21, 2003
31
US
I have stared at this code for about 2 hours now. Line 11 is giving me a unexpected T_String Error. I am using zend editor and line 11-22 is underlined in red. It started under the name username. Someone PLEASE HELP ME! Thanks

<?php
if(!empty($_POST['send_form'])) {
echo "Please verify your information that you entered:<br><br>
First Name:".$_POST['first_name']."<br>
Last Name:".$_POST['last_name']."<br>
Street Address:".$_POST['street_address']."<br>
City:".$_POST['city']."<br>
State:".$_POST['state']."<br>
Zip Code:".$_POST['zipcode']."<br>
Phone Number:".$_POST['phone_number]."<br>
User Name:".$_POST['username']."<br>
Email:".&_POST['email']."<br>;
}
?>
<html>
<head></head>
<body>
<form action="thankyou.php" method="post">
<input type="hidden" name="first_name" value="<? $_POST['first_name']; ?>">
<input type="hidden" name="last_name" value="<? $_POST['last_name']; ?>">
<input type="hidden" name="street_address" value="<? $_POST['street-address']; ?>">
<input type="hidden" name="city" value="<? $_POST['city']; ?>">
<input type="hidden" name="state" value="<? $_POST['state']; ?>">
<input type="hidden" name="zipcode" value="<? $_POST['zipcode']; ?>">
<input type="hidden" name="phone_number" value="<? $_POST['phone_number']; ?>">
<input type="hidden" name="username" value="<? $_POST['username']; ?>">
<input type="hidden" name="email" value="<? $_POST['email']; ?>">
<input type="submit" value="Submit">
</form>
</body>
</html>
 
Phone Number:".$_POST['phone_number']."<br>

You missed the ' after phone_number
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top