Bhavesh G
Bhavesh G

Reputation: 3028

Page Navigation In PHP

How Make Page Navigation in php without reloading the page without jquery like facebook has. ex. for welcome page : http://www.facebook.com/?sk=welcome for friends list : http://www.facebook.com/?sk=ff&ap=1 for news feed link http://www.fack.com/?sk=nf

with clicking the link instead of reloading whole page the appropriate content be loaded. how to do this without javascript, jquery

Upvotes: 0

Views: 395

Answers (2)

Zoe Edwards
Zoe Edwards

Reputation: 13667

If you want it done the same way that Facebook does, you’ll have to use JavaScript. There’s little way to do it without it.

Upvotes: 0

monsieur_h
monsieur_h

Reputation: 1380

Without JS and jQuery, the only way will be an <iframe>. Look at this documentation for more.

Upvotes: 1

Related Questions