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 " > > > >Class >Name >Type >NPC > "; > > while ($row =

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

2001-11-16 Thread matt stewart
o:[EMAIL 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); // --

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 tag, which automatically bolds any text inbetween. You should be a bit more consistent with its use: * Your use: Class * Proper use: Class or: Class Maybe that's it?? Russ On Fri, 16 Nov 2001 12:53:07 +0100 Kev

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 SimClas

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 d

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

2001-11-16 Thread matt stewart
if you post a bit of the offending code then i'll have a look - sounds strange though -Original Message- From: Kevin Schaaps [mailto:[EMAIL PROTECTED]] Sent: 16 November 2001 11:44 To: [EMAIL PROTECTED] Subject: [PHP-DB] PHP results bold in HTML Hi everyone, I've noticed something stra