some info from phpinfo()
System Windows NT localhost 5.2 build 3790
Build Date Feb 15 2003 23:02:25
Server API CGI/FastCGI
Virtual Directory Support enabled
Configuration File (php.ini) Path E:\WINDOWS\php.ini
PHP API 20020918
PHP Extension 20020429
Zend Extension 20021010
Debug Build no
Thread Safety enabled
Registered PHP Streams php, http, ftp, compress.zlib
error
PHP Parse error: parse error, unexpected '<' in F:\work\websites\technicalsurfing\thesite\index.php on line 7
question/problem
getting this error for the following php file
what did i do wrong regarding installation/file writing?
please help
html/php code
<html>
<head>
<title>Technical Surfing</title>
</head>
<body>
<?php
<table>
<tr>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
</table>
?>
</body>
</html>
REPEAT of code with line numbres
1<html>
2<head>
3<title>Technical Surfing</title>
4</head>
5<body>
6<?php
7<table>
8 <tr>
9 <td>
10 </td>
11 <td>
12 </td>
13 <td>
14 </td>
15 </tr>
16</table>
17?>
18</body>
19</html>