Shk_digit

Right off the assembly line
please tell me the code in PHP about

When I click on a link, a page containing many topics must open but the screen must show that frame of that page which shows the topic clicked by the link,,,means only that part of the page must come first before the sight
 

abhidev

Human Spambot
u need to use anchors... i.e on the page consisting all the topics...just add this
<a name="topicName/topicID"></a> for each topic.

And when the link is clicked, u need to attach this name specified(topicName/topicID) to the url.
e.g http:/mysite.com/threads.php#topicID
 
Top Bottom