On Sun, 2 Feb 2003 20:52:17 + (GMT) Philip Olson <[EMAIL PROTECTED]> wrote:
> This depends on your view of the notes system. It's purpose
> is for people noting improvements to the manual page itself,
> not a repository for code snippets (long, short or otherwise).
> But I also leave some u
On Fri, 31 Jan 2003, Maxim Maletsky wrote:
> > need a random line stamp?
> > useful for humour stories :-)
> >
> > > $file = file("/path/to/your/file");
> >
> > mt_srand ((double) microtime() * 100);
> > $line = mt_rand(0,count($file));
> >
> > echo $file[$line];
> > ?>
> Philip,
>
> Why