PDA

View Full Version : how to use the "phpdigSearch" array


flanders
10-06-2004, 03:12 AM
hi,

i have to use the
phpdigSearch($id_connect, $query_string, $option, $refine,
$refine_url, $lim_start, $limite, $browse,
$site, $path, $relative_script_path, 'array')

how i can use the content in the array?
when i do this:
print_r(
phpdigSearch($id_connect, $query_string, $option, $refine,
$refine_url, $lim_start, $limite, $browse,
$site, $path, $relative_script_path, 'array')
);

then i see only the parameters, but not the variable name... i need the name of this!!

anyone understand me? my english is not so good:)

Charter
10-06-2004, 03:25 AM
// assign it to a variable to get the variable name
$output = phpdigSearch($id_connect, $query_string, $option, $refine,
$refine_url, $lim_start, $limite, $browse,
$site, $path, $relative_script_path, 'array');
print_r($output);

flanders
10-06-2004, 06:07 AM
cool, thank you