Subject:
|
Re: Previous and next links a la Brickshelf
|
Newsgroups:
|
lugnet.off-topic.geek
|
Date:
|
Wed, 25 Jul 2001 03:28:19 GMT
|
Viewed:
|
126 times
|
| |
| |
In lugnet.off-topic.geek, Dan Boger writes:
> hmmm... dunno php, but try this in perl:
I dunno PHP either, but it's very easy to learn as you go along.
> ...
> HTH,
Thanks once again, Dan. I should have thought of that myself. And it's easy
to translate into just about any language.
--Bram
|
|
Message has 1 Reply: | | Re: Previous and next links a la Brickshelf
|
| (...) Well, I'm done creating all the PHP scripts for my "new" website (except a search engine...but that'll come when I have more time) All that remains is to put it all together... and then my website will finally be as easy to update as uploading (...) (23 years ago, 25-Jul-01, to lugnet.off-topic.geek)
|
Message is in Reply To:
| | Re: Previous and next links a la Brickshelf
|
| (...) hmmm... dunno php, but try this in perl: #!/usr/bin/perl -w $current = shift; $prev = ''; $next = ''; while (<>) { ($name) = split /,/; if ($name eq $current) { $next = <>; ($next) = split /,/, $next; last; } $prev = $name; } this is untested, (...) (23 years ago, 25-Jul-01, to lugnet.off-topic.geek)
|
4 Messages in This Thread:
- Entire Thread on One Page:
- Nested:
All | Brief | Compact | Dots
Linear:
All | Brief | Compact
This Message and its Replies on One Page:
- Nested:
All | Brief | Compact | Dots
Linear:
All | Brief | Compact
|
|
|
|