How do i embed a php page in a page?
How do i embed a php page in a page?
I liked the looks of this tutorial (for getting across the basics quickly):
http://www.tizag.com/phpT/include.php
But, you can take your pick from these:
http://www.google.com/search?hl=en&l...de&btnG=Search
- John________________________
Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate
Define "embed." Are you talking about using an iframe?
Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!
include(), though a little more work in some cases, would likely turn out much better.
It does depend on the situation. Anything from iframes to include() to ajax might fit.
Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum
without using an iframe...
I repeat:"Embed" can mean:Originally Posted by myself
- Output as part of the document
- Store the data from the second file within the first file
- Link to the second file from the first file in such a way that the first file is affected by the contents of the second
Originally Posted by myself
Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!
Store the data from the second file within the first file
Code:<?php $secondFile = <<<EOF Some data goes here. You can put whatever you like here and it will be stored within the file (in the variable \$secondFile) and not output. EOF; ?>
Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!
Bookmarks