Forum Moderators: Robert Charlton & goodroi

Message Too Old, No Replies

link back to same site

         

bluegray

4:31 pm on Oct 29, 2005 (gmt 0)

10+ Year Member



I'm thinking of adding some code to my page to change the stylesheet with php.
I will have to make some links like :

<a href="./switcher.php?set=red">
click here to change to RED style!</a>

switcher.php will look something like this:

<?php
setcookie ('sitestyle', $set, time()+31536000, ยป
'/', 'yourdomain.com', '0');
header("Location: $HTTP_REFERER");
?>

I was wondering if this will have any effect on the PR rating as it is essentially a link back to the same page.

Thanks for any help.