y doesnt this select the right url?
here is the code.
global $prefix, $dbi;
$result = sql_query("select nid, title from ".$prefix."_more_news where active=1 order by weight", $dbi);
// while(list($nid, $title) = sql_fetch_row($result, $dbi)) {
$row = mysql_numrows($result);
$content = '<form><select onchange=submit();>';
$content .= "<option selected >SELECT</option>";
$aku = sql_query("select nid, title from ".$prefix."_more_news where active=1 order by weight", $dbi);
while ($row = mysql_fetch_array($aku))
{
$nid=$row["nid"];
$title=$row["title"];
$content .= "<option value=\"$title\">$title";
}
if ($title="")
{
print ("$XX");
}
$content .= "</select></form>";
$content .= "<input type=\"hidden\" value=\"modules.php?name=More_News&topic=$nid\">";