View Single Post
Old 10-02-2003, 06:07 AM   #2
jirving
Green Mole
 
Join Date: Sep 2003
Posts: 10
I had the same question. Do do this you would have to modify phpdig source code.

I personally build your own php page that displays the results using the array that is returned from the function. That way you have complete flexibility to add all the code you want.

Here is what I did:

create a template for what you want without the seach results code.

$result = phpdigSearch($id_connect, $query_string, $option, $refine,
$refine_url, $lim_start, $limite, $browse,
$site, $path, $relative_script_path, 'array');

print_r($result) ;

This will give you a printout of the entire array. That way you can construct your own custom function for displaying the information.
jirving is offline   Reply With Quote