I am new to php and want to know if I store data in php session in a page will crawlers crawl the data in the sessions? Will crawler still crawl the rest of the page?

Thanks.

    PHP session data is stored on the server, unlike cookies. Web crawlers/spiders can only "crawl" the content that you serve them.

      Write a Reply...