codice:
<?php
   @include "config.php";?>
   <title><?php echo $title; ?></title>
   <link rel="stylesheet" type="text/css" href="website.css">
   </head>
   <body>
   <?php
     @include "top.php";

     if($query = @mysql_query("SELECT * FROM $assoc") or die (mysql_error()))
    {
        while ($fetch = @mysql_fetch_array($query) or die (mysql_error()))
        {
          $doc_nome = stripslashes($fetch['doc_nome']);
          $doc_url = stripslashes($fetch['doc_url']);
          $doc_link = stripslashes($fetch['doc_link']);
          ?>
            <td id="CONTENT">
          <?php

           echo"".$doc_nome."";
         }
 
      }
     @mysql_close();

 ?>
ad ogni riga
codice:
           echo"".$doc_nome."";
vorrei andare a capo ma neanche con il comando
non ci riesco

Potete dirmi dov'è l'errore nella sintassi?
Grazie in anticipo
Massimiliano