View Single Post
  #6 (permalink)  
Old 06-08-09, 05:30 PM
JordanM JordanM is offline
Newbie Coder
 
Join Date: Jun 2009
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Another Problem.

Hey , Got another problem now after a bit more coding.

Im getting the error:

Parse error: syntax error, unexpected '/' in /home/fhlinux134/c/classifiedswindow.co.uk/user/htdocs/index.php on line 102

A bit of my code above this is:
Code:
<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>
        <td  valign='top'>
        Your Advert:
        </td>
        <td>
        <textarea cols='20' rows='2' name='message' maxlength='300'></textarea>
        <p>
		<input type='submit' name='submit' value='Post'>
		</td>
    </tr> "  
</table>
</form>
It seems the error is coming from
Code:
</table>
(Which is line 102)

Any Idea's on this?

Thankyou, Jordan
Reply With Quote