im doing some thing wrong here, its just not working with me...
<?php
while($r=mysql_fetch_array($result)){
$field1 = $r["Author"];
$field2 = $r["Title"];
$field3 = $r["Synopsis"];
$field4 = $r["Price"];
$field3 = substr($field3, 0, 20)
echo "<b>$field1</b><br> $field2</br> $field3 <b>£$field4</b></p>";
}
?>
i need the synopsis to be cut down!!! im just getting an error message for line 48 which is the echo line!!!