On Monday 14 January 2008 00:07:30 Andrés Robinet wrote:
> > -Original Message-
> > From: Børge Holen [mailto:[EMAIL PROTECTED]
> > Sent: Sunday, January 13, 2008 7:48 AM
> > To: php-general@lists.php.net
> > Subject: Re: [PHP] Guestbook
> >
> >
> -Original Message-
> From: Børge Holen [mailto:[EMAIL PROTECTED]
> Sent: Sunday, January 13, 2008 7:48 AM
> To: php-general@lists.php.net
> Subject: Re: [PHP] Guestbook
>
> On Sunday 13 January 2008 01:32:53 Andrés Robinet wrote:
> > Hi Guys,
> >
>
On Sunday 13 January 2008 01:32:53 Andrés Robinet wrote:
> Hi Guys,
>
> Anybody knows of a free and decent PHP Multilanguage guestbook (or at least
> supporting German and English)? I don't care if it is db-driven or uses
> flat files.
> I know how to write one, but it's for a website we didn't dev
> The quick solution, if you intend to continue the autoincrement field, is
to
> number the entries manually when you're displaying them: Something along
the
> lines of:
>
> $count = 0;
> while ($row(mysql_fetch_array($result_id))) {
> $count++;
> echo "Entry $count";
> ...
> ..
On Sunday 01 December 2002 18:33, Vicky wrote:
> Hiya ^_^
>
> I have a guestbook I coded myself using PHP. In the corner it keeps record
> of the entry number, but when I delete and entry the entries posted after
> it don't go back to catch up. So the entry numbers skip from 22 to 24, for
> example
On Thu, 21 Mar 2002, James Taylor wrote:
> I have this sort of guest book that only will display 10 entries on the
> page at a time, after that you have the option of previous 10, and if
> you're not on the front page you also have next 10. I'm getting the ID
> of the VERY LAST POST listed on the
This example generates previous/next links but could be modified to make
links to page 1, 2, 3, 4, etc.
This code is not tested what so ever, but it should look something like
this:
-
$rows_to_show = 10;
$total_rows = mysql_num_rows(mysql_query("select name, post from guestbook
order by
7 matches
Mail list logo