--- nfo/php/libs/com.newsblob.phphtmllib/examples/widget6.php 2003/09/20 00:20:55 1.3
+++ nfo/php/libs/com.newsblob.phphtmllib/examples/widget6.php 2004/05/06 16:27:17 1.4
@@ -12,7 +12,7 @@
* types of DB objects. One from a PEAR::DB object,
* and another from a ADODB object.
*
- * $Id: widget6.php,v 1.3 2003/09/20 00:20:55 jonen Exp $
+ * $Id: widget6.php,v 1.4 2004/05/06 16:27:17 jonen Exp $
*
* @author Walter A. Boring IV
* @package phpHtmlLib
@@ -199,10 +199,12 @@
//build the PEAR list and sort by ip_address by default
$pearlist = new pearmysqllist("PEAR::MySQL List", 600, "ip_address", TRUE);
+$pearlist->set_align("right");
//build the ADODB list using the same exact table in the DB
//and sort by version by default
$adodblist = new adodbmysqllist("ADODB::MySQL List", 600, "version", TRUE);
+$adodblist->set_align("left");
$page->add( $pearlist, html_br(2), $adodblist );