pp wrote:


> Lucky You, do not have "great Polish International fuc... POLPAK-T" ;)
> This is the worst connection in our country , and very bad thing is 
> TPsa in Poland is almost monopolist :(
> We are waiting for new IP from RIPE so we should have faster connection
> in a couple of weeks.

To keep you busy in the meantime, the selects below do work for me.

<FORM ACTION="/example/select/" METHOD="POST">
<SELECT NAME="drop">
<? $list = mgd_list_topic_articles(8);
while ($list && $list->fetch()) { ?>
<OPTION VALUE="&(list.id);">&(list.title);
<? } ?>
</SELECT>
<BR>
<? if ($drop) {
$art = mgd_get_article($drop); echo $art->content, "<HR>";
} ?>
<P>
<SELECT NAME="single" SIZE=4>
<? $list = mgd_list_topic_articles(13);
while ($list && $list->fetch()) { ?>
<OPTION VALUE="&(list.id);">&(list.title);
<? } ?>
</SELECT>
<BR>
<? if ($single) {
$art = mgd_get_article($single); echo $art->content, "<HR>";
} ?><P>
<SELECT NAME="multi[]" SIZE=4 MULTIPLE>
<? $list = mgd_list_topic_articles(12);
while ($list && $list->fetch()) { ?>
<OPTION VALUE="&(list.id);">&(list.title);
<? } ?>
</SELECT>
<? if ($multi) while (list(, $value) = each ($multi)) {
$art = mgd_get_article($value);
echo $art->content, "<HR>";
}
?>
<P>
<INPUT TYPE="submit" NAME=".submit"><INPUT TYPE="reset">
</FORM>


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to