Re: [PHP-DB] PHP results bold in HTML

2001-11-16 Thread Russ Michell
Do you have a URL we can look at? Russ On Fri, 16 Nov 2001 12:44:14 +0100 Kevin Schaaps [EMAIL PROTECTED] wrote: Hi everyone, I've noticed something strange, and I was wondering if you knew the answer: When I put the results of a query on a HTML page, the data that comes from the

Re: [PHP-DB] PHP results bold in HTML

2001-11-16 Thread Kevin Schaaps
Thanks Matt, Here it is: mysql_select_db ($dbname); // - -- // FLEET LIST // - -- $query = SELECT sim_tbl.name as SimName, class_tbl.class as

Re: [PHP-DB] PHP results bold in HTML

2001-11-16 Thread Russ Michell
Well depending on what results you have displayed in bold, you're using the HTML th tag, which automatically bolds any text inbetween. You should be a bit more consistent with its use: * Your use: td width=\135\bClass/b/th * Proper use: td width=\135\bClass/b/td or: th width=\135\bClass/b/th

RE: [PHP-DB] PHP results bold in HTML

2001-11-16 Thread matt stewart
PROTECTED]] Sent: 16 November 2001 11:53 To: [EMAIL PROTECTED] Subject: Re: [PHP-DB] PHP results bold in HTML Thanks Matt, Here it is: mysql_select_db ($dbname); // - -- // FLEET LIST

RE: [PHP-DB] PHP results bold in HTML

2001-11-16 Thread Matt Williams
$result = mysql_query($query); $num_rows = mysql_num_rows($result); if ($num_rows != 0) { print table class=\db1\ tr td width=\60\/th td width=\135\bClass/b/th td width=\135\bName/b/th td