Error:
Fatal error: Template::AddParam() : Wrong argument
count (4) arguments in
z:\home\icu.net\www\template.php on line 709
----------------------------------------------------------------------------------
Code:
while($cont=mysql_fetch_array($results))
{
$downloadname[] = array("s_descr"=>$cont
["s_descr"], "s_title"=>$cont["s_title"]);
$sql2="select * from download where
link='".$cont["link"]."'";
$results2=mysql_query($sql2,$db);
while($cont=mysql_fetch_array($results2))
{
$exdlinkn[] = array("dlink"=>'<a
href="'.$cont["href"].'" title="'.$cont["title"].'">'.$cont
["title"].'</a>', "dtext"=>$cont["descr"]);
}
}
$template->AddParam("downloadname",
&$downloadname, "exdlinkn", &$exdlinkn);
----------------------------------------------------------------------------------
Probably it is my mistake...