Example #1
0
function freshports_WatchListDDLBForm($db, $UserID, $WatchListID, $Extra = '')
{
    $HTML = '
<form action="' . $_SERVER["PHP_SELF"] . '" method="POST" NAME=f>
<table border="0">
<tr>
<td valign="top" nowrap align="right">
<small>
';
    $HTML .= freshports_WatchListDDLB($db, $UserID, $WatchListID);
    $HTML .= '
</small>
</td>
<td valign="top" nowrap align="left">
' . freshports_WatchListSelectGoButton() . $Extra . '</td></tr></table></form>
';
    return $HTML;
}
Example #2
0
function ChooseWatchLists($UserID, $db)
{
    echo '<TABLE width="100%" ALIGN="center" BORDER="1" CELLSPACING="0" CELLPADDING="5"><TR>';
    ?>

	<TR><TD colspan="3"><BIG>Your staging area contains your uploaded information.  Please choose a watch list, and click on Go.
		 <SMALL><A HREF="/help.php">help</A></SMALL></TD></TR>

	<TR><TD>
	<table width="100%" border="0"><tr><td>
			<FORM ACTION="<?php 
    echo $_SERVER["PHP_SELF"];
    ?>
" method="POST">
			<P ALIGN="center">
 			<INPUT TYPE="submit" VALUE="Empty staging area" NAME="clear">
 			</td><td align="right">
			<?php 
    echo freshports_WatchListDDLB($db, $UserID);
    ?>
			</td>
			<td>
	<?php 
    echo freshports_WatchListSelectGoButton();
    ?>

</td></tr></table>
	</TD></TR>
<?php 
    echo '</FORM>';
    echo '</TABLE>';
}