No a ver el if tienes que ir por encima del do_while(), para que lo ejecute sólo si se ha mandado por $_POST el submit indicado.
Quedaría una cosa así:
Código PHP:
Ver original<form id="BUSCAR" name="BUSCAR" method="post" action="">
* <label><span class="Estilo1">Buscar publicacion articulo</span>:
* <input name="TITULO" type="text" id="TITULO" />
* <input type="submit" name="Submit" value="BUSCAR" />
* </label>
* <p> </p>
*
*
*
*
* <table border="2" cellpadding="3" cellspacing="2" width="845" bordercolor="transparent">
* * <tr>
* * * <td bgcolor="#b8cce4" bordercolor="transparent"><strong>EDITAR</strong></td>
* * * <td bgcolor="#b8cce4" bordercolor="transparent"><strong>ELIMINAR</strong></td>
* * * <td bgcolor="#b8cce4" bordercolor="transparent"><strong>TITULO</strong></td>
* * * <td bgcolor="#b8cce4" bordercolor="transparent"><strong>SECCION</strong></td>
* * * <td bgcolor="#b8cce4" bordercolor="transparent"><strong>FECHA</strong></td>
* * * <td bgcolor="#b8cce4" bordercolor="transparent"><strong>NOMBRE</strong></td>
* * </tr>
<?php if(isset($_POST['BUSCAR']){ ?> * * <?php do { ?>
* * * <tr>
* * * <td bordercolor="transparent"><div align="center"><img src="css/images/edit.png"></div></td>
* * * <td bordercolor="transparent"><div align="center"><img src="css/images/delete.png"></div></td>
* * * * <td bordercolor="transparent"><?php echo $row_BUSCAR_ARTICULO['TITULO']; ?></td>
* * * * <td bordercolor="transparent"><?php echo $row_BUSCAR_ARTICULO['SECCION']; ?></td>
* * * * <td bordercolor="transparent"><?php echo $row_BUSCAR_ARTICULO['FECHA']; ?></td>
* * * * <td bordercolor="transparent"><?php echo $row_BUSCAR_ARTICULO['NOMBRE']; ?></td>
* * * </tr>
<? }else{ ?>
<tr><td colspan="6">Introduce algo en la búsqueda</td></tr>
<? } ?
* </table>
</form>