Prova così:
Codice PHP:
<?php

include ('config.php');

$circa mysql_escape_string(stripslashes($_POST['cerca']));
$sql1 "SELECT id, testo, titolo, indirizzo, genere FROM tabella WHERE testo LIKE '%$circa%' OR titolo LIKE '%$circa%' OR genere LIKE '%$circa%' OR indirizzo LIKE '%$circa%'  ";
$res1 mysql_query($sql1) or die (mysql_error());

while(
$in1mysql_fetch_assoc($res1)) {

    
$titolo $in1['titolo'];
    
$testo $in1['testo'];
    
    
//visualizza quello che vuoi
    
echo $testo;

}

?>