sableye
She's Mine!
- 210
- Posts
- 21
- Years
- Age 33
- Seen Sep 13, 2005
i cannot see the problem with this code but it keeps coming up with the error
Please help here is the code:Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/pichunet/public_html/ichigokenkyuujo/Blog/added.php on line 32
Code:
<?php
$filename = "news.php";
$file = fopen( $filename, "w");
$sring = "<center>
<table>
<tr>
<td>
Posted on: $date Title: $title
</td>
</tr>
<tr>
<td>
$news
</td>
</tr>
<tr>
<td>
Currently listening to: $listen
</td>
</tr>
<tr>
<td>
Mood:
</td>
<td>
<img src="/jiemmotions/$mood.gif">
</td>
</tr>
</table>
</center>
<p>";
fwrite( $file, $string );
fclose( $file );
?>
<html>
<head>
<title>Orenji's Blog Updating system</title>
</head>
<body>
<?php
if( file_exists( $filename ) )
echo("Done now what do you want to do next?");
else { echo( "Error Problem occured please contact
Daniel" ); }
?>
<br><a href="https://ichigokenkyuujo.com/"> Back to the ichigokenkyuujo</a>
</body>
</html>
Last edited: