Re: [PHP-DB] Counting HTML Lines

2005-04-15 Thread Martin Norland
Ng Hwee Hwee wrote: is there a way to count how many lines of screen output has HTML render? below is a sample of what i'm trying to do.. i'm trying to generate a table with the Remarks column containing data type TEXT which may have a few lines. therefore, i cannot just count how many rows of reco

Re: [PHP-DB] Counting HTML Lines

2005-04-15 Thread mel list_php
gt; To: Subject: Re: [PHP-DB] Counting HTML Lines Date: Fri, 15 Apr 2005 17:31:58 +0800 Hi! thank you so much for your help!! do you mean to do ob_get_contents() before i do a ob_end_flush()? but even if i'm successful in counting the number of "\n"s, HTML tags like ,,

Re: [PHP-DB] Counting HTML Lines

2005-04-15 Thread Ng Hwee Hwee
Hi! thank you so much for your help!! do you mean to do ob_get_contents() before i do a ob_end_flush()? but even if i'm successful in counting the number of "\n"s, HTML tags like ,,

Re: [PHP-DB] Counting HTML Lines

2005-04-15 Thread Petar Nedyalkov
i mentioned the way. you can buffer the output and count. > > hwee > > - Original Message - > From: "Petar Nedyalkov" <[EMAIL PROTECTED]> > To: > Sent: Friday, April 15, 2005 5:06 PM > Subject: Re: [PHP-DB] Counting HTML Lines > > Count

Re: [PHP-DB] Counting HTML Lines

2005-04-15 Thread Jeffrey
but because it is inside a cell that has a linited width, HTML will automatically push it to the next line, right? in this case, there won't be a count for "\n". hwee - Original Message - From: "Petar Nedyalkov" <[EMAIL PROTECTED]> To: Sent: Friday, April 15

Re: [PHP-DB] Counting HTML Lines

2005-04-15 Thread Jyrki Laurila
> > - Original Message - > From: "Petar Nedyalkov" <[EMAIL PROTECTED]> > To: > Sent: Friday, April 15, 2005 5:06 PM > Subject: Re: [PHP-DB] Counting HTML Lines > > Count the "\n" characters in the output. > -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] Counting HTML Lines

2005-04-15 Thread Ng Hwee Hwee
e a count for "\n". hwee - Original Message - From: "Petar Nedyalkov" <[EMAIL PROTECTED]> To: Sent: Friday, April 15, 2005 5:06 PM Subject: Re: [PHP-DB] Counting HTML Lines Count the "\n" characters in the output. -- PHP Database Mailing List (h

Re: [PHP-DB] Counting HTML Lines

2005-04-15 Thread Petar Nedyalkov
On Friday 15 April 2005 11:46, Ng Hwee Hwee wrote: > Hi all, > > is there a way to count how many lines of screen output has HTML render? > below is a sample of what i'm trying to do.. i'm trying to generate a table > with the Remarks column containing data type TEXT which may have a few > lines. t