Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

I have RSS links with date and title on the Front Page. What would be the best way to display the article summary, etc in local page, rather than going off-site to the source page. Create a session variable thats an array, rewrite the link to point to the local page, and pass the array position in the page link?

share|improve this question
»how do I pass data from a« ... does mean ... ? – kaiser Mar 5 '12 at 19:14

closed as not a real question by toscho Jan 2 at 22:54

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Yes, the "easiest" is setting a session variable $_SESSION['rss'] = $RSS_ARRAY

If you have problems passing your array, you can serialize the information using $_SESSION['rss'] = serialize($RSS_ARRAY), and using unserialize() when reading it in the new page.

You can also store in database.

That'll surely help you passing data.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.