I have a query on page1.php.
$risultato_tutte = mysql_query("SELECT * FROM partyround_iscritti WHERE nome LIKE '$nome%' AND cognome LIKE '$cognome%' AND azienda LIKE '$azienda%' AND email_azienda LIKE '%$email_azienda%' AND email_pers LIKE '%$email_pers%' AND tel LIKE '%$tel%' AND fax LIKE '%$fax%' AND cell LIKE '%$cell%' AND indirizzo LIKE '%$indirizzo%' AND cap LIKE '$cap%' AND citta LIKE '$citta%' AND qualifica LIKE '$qualifica%' AND amico_di LIKE '$amico_di%' AND categoria LIKE '$categoria%' ORDER BY $order_by LIMIT $offset, $limit", $connect);
I want to pass this query to page2.php where I need it.
There will be a link on page1.php or a form button (better) to go to page2.php where this query can be used again. Is it just possible to put the query in a hidden field?
I don't think so...