Hey,
I've taken over a php based website from another developer (ugh!)...
The website uses two include files to display ads down both sides of the page. Now the client wants these ads to display in Random positions....
So, Its easy enough to take the ad text and place it in variables,
$sAdText[0] = '<tr><tr>link text and ad image here</td></tr>';
$sAdText[1] = '<tr><tr>link text and ad image here</td></tr>';
$sAdText[2] = '<tr><tr>link text and ad image here</td></tr>';
How would I go about getting these to display randomly? I can reverse them with a loop I guess, but I'd like a more random solution than that if possible.