Hi all,
I am currently developing an application for software problem tracking.
I have not found an easy way to pass to one of the search module, the search results passed by a first search
ex.
$select="SELECT FROM table WITH filetr_criteria";
$result=mysql_query($select);
$result_array=mysql_fetch_array($result);
how can I pass this results as parameter to a another function?
If I pass $select it will be truncated, I have tried to pass $result or $result_array, but am I am doing some mistake, since I do not manage to get it working
any hints?
cheers
gianpiero