function IDReturnURL($ID){global $dsql;$query = "Select arc.*,tp.typedir,tp.typename,tp.corank,tp.isdefault,tp.defaultname,tp.namerule,tp.moresite,tp.siteurl,tp.sitepathfrom dede_archives arc left join dede_arctype tp on arc.typeid=tp.id where arc.id = ".$ID;$row = $dsql->GetOne($query);$ReturnURL = GetFileUrl($row['id'],$row['typeid'],$row['senddate'],$row['title'],$row['ismake'],$row['arcrank'],$row['namerule'],$row['typedir'],$row['money'],$row['filename'],$row['moresite'],$row['siteurl'],$row['sitepath']);return $ReturnURL;} |