|
Posted by Jerry Stuckle on 05/30/06 11:29
Wayne wrote:
> Hi,
>
> I would like to know if there is a way in php to randomize
> the following url (www.domainsample.com used as example).
>
> I have 4 different urls I would like to use, basically changing
> every time the page is accessed.
>
> <!--
> function open_on_entrance(url,name)
> {
>
> new_window = window.open('www.domainsample.com','domainsample',
> 'menubar,resizable,scrollbars,dependent,status')
> }
> // -->
> </script>
>
> Any assistance would be great.
>
I'm not sure what your question is. You ask if you can do something in PHP,
then post some javascript code.
If you're asking if you can generate the javascript code with randomized urls,
the answer is yes - put the url's you want to randomize in an array, call rand()
to get a random number between 0 and the number of array elements - 1 and write
the selected element into your javascript code.
And BTW - when using example domains, you should use www.example.com - which has
been reserved for that reason.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
[Back to original message]
|