Random index
am 20.07.2007 20:33:20 von someusernamehere
Hey I have a web page translated into 3 languages, it's possible that
when the page is visited load a random index?
I have index.es.html index.pt.html index.en.html
it's possible load ramdom this?
thanks
Re: Random index
am 20.07.2007 21:19:29 von nigel_moss
While the city slept, someusernamehere (someusernamehere@gmail.com)
feverishly typed...
> Hey I have a web page translated into 3 languages, it's possible that
> when the page is visited load a random index?
> I have index.es.html index.pt.html index.en.html
>
> it's possible load ramdom this?
Yes it is, although wouldn't this be rather infuriating for your visitors?
In any case, if you can run php on your server, the following will work.
Save it as index.php;
$index = array( "index.es.html",
"index.pt.html",
"index.en.html");
include $index[rand(0, 2)];
?>
You can see it in action here:
http://www.nigenet.org.uk/stuff/test/randomIndex/index.php
Hope that helps,
Nige
--
Nigel Moss http://www.nigenet.org.uk
Mail address will bounce. nigel@DOG.nigenet.org.uk | Take the DOG. out!
"Your mother ate my dog!", "Not all of him!"
Re: Random index
am 20.07.2007 22:42:44 von someusernamehere
On Jul 20, 2:19 pm, "nice.guy.nige" wrote:
> While the city slept, someusernamehere (someusernameh...@gmail.com)
> feverishly typed...
>
> > Hey I have a web page translated into 3 languages, it's possible that
> > when the page is visited load a random index?
> > I have index.es.html index.pt.html index.en.html
>
> > it's possible load ramdom this?
>
> Yes it is, although wouldn't this be rather infuriating for your visitors?
>
> In any case, if you can run php on your server, the following will work.
> Save it as index.php;
>
>
>
> $index = array( "index.es.html",
> "index.pt.html",
> "index.en.html");
>
> include $index[rand(0, 2)];
>
> ?>
>
> You can see it in action here:http://www.nigenet.org.uk/stuff/test/randomIndex/index. php
hehehehe sure, this works fine for my !!! many thanks
muito obrigado
Re: Random index
am 20.07.2007 22:44:51 von someusernamehere
On Jul 20, 2:19 pm, "nice.guy.nige" wrote:
> While the city slept, someusernamehere (someusernameh...@gmail.com)
> feverishly typed...
>
> > Hey I have a web page translated into 3 languages, it's possible that
> > when the page is visited load a random index?
> > I have index.es.html index.pt.html index.en.html
>
> > it's possible load ramdom this?
>
> Yes it is, although wouldn't this be rather infuriating for your visitors?
>
> In any case, if you can run php on your server, the following will work.
> Save it as index.php;
>
>
[...]
additionaly I guess that only in HTML it's not possible?
Re: Random index
am 20.07.2007 23:17:41 von jkorpela
Scripsit someusernamehere:
> hehehehe sure, this works fine for my !!! many thanks
If that's a solution, I'm glad we don't need to see the (real) problem.
--
Jukka K. Korpela ("Yucca")
http://www.cs.tut.fi/~jkorpela/
Re: Random index
am 20.07.2007 23:42:14 von nigel_moss
While the city slept, Jukka K. Korpela (jkorpela@cs.tut.fi) feverishly
typed...
> Scripsit someusernamehere:
>
>> hehehehe sure, this works fine for my !!! many thanks
>
> If that's a solution, I'm glad we don't need to see the (real)
> problem.
Well, yes it is a solution to what the OP asked for. And please remember
that I started my post with the following line;
"Yes it is, although wouldn't this be rather infuriating for your visitors?"
Cheers,
Nige
--
Nigel Moss http://www.nigenet.org.uk
Mail address will bounce. nigel@DOG.nigenet.org.uk | Take the DOG. out!
"Your mother ate my dog!", "Not all of him!"