Is there any way to make a visited link back to unvisited without deleteing anything from hystory? I want to do that on a forum, when someone replies in a topic, it has to turn that topic link into unvisited.
I am using this css:
a.newold:visited
{color:#999999;}
a.newold:link
{font-weight: bold;}
and there is the list of topics:
<a class="newold" href="read_topic.php?id=ID">TITLE</a>
The thing is: When I click on a topic, it will be automatically updated as visited?
I want something, (if is possible) that when I add a reply INSIDE that topic, its link will be updated as unvisited
More information about what I am seeking:
Example: The topic name will be: TEST. The topic first is unvisited, and it looks like: TEST;
I click on it, I read it, it will look like: TEST;
Then I add a reply in that topic;
The topic will look unvisited again: TEST;
I think this is as clear as it can be.
If I use some other variable like $user
seen topic_id
, it will be bad, because it is a large request, so I wonder if there is something that can be done without database requests.