View Single Post
  #3 (permalink)  
Old 06-08-09, 06:45 AM
JordanM JordanM is offline
Newbie Coder
 
Join Date: Jun 2009
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Problem still persisting

Hi There,
I have changed to double quotes however the same problem remains.
Here is a selection of code above and below (Not all but a fair amount)

Code:
//show data to user.

echo"

<table>
	<tr>
			<td>
			Info about the user who has posted.
			</td>
	</tr>
	<tr> 
			<td>
			Message
			</td>
	</tr>	
	
</table>

} 


//Horizontal Line
echo <hr>

//Form

echo "

<form action="index.php" method="POST">
<table width='100%'>
	<tr>
		<td width='18%'>
		Your Full Name:
		</td>
		<td>
		<input type='text' name='text' maxlength='35'>
		</td>
	</tr>
	<tr>
		<td>
		Your Email:
		</td>
		<td>
		<input type='text' name='email' maxlength='50'>
		</td>
	</tr>	
	<tr>
Thankyou,
Jordan
Reply With Quote