Vnxf.vn - Mình đang sử dụng các liên kết chọn nguồn dữ liệu để hiển thị trong một iframe. Tôi đã cung cấp tất cả các nguồn, chỉ có một tập tin html, nhưng bạn có thể nhìn thấy những gì đang xảy ra ở đây và tạo ra file html của riêng bạn.
Mình cũng chứng minh làm thế nào để sử dụng làm động từ $ _REQUEST trong file PHP.
Code html mẫu cho trang web của bạn
Đây là nguồn cho test.php
Mẫu code cho sampletext.html
Mình cũng chứng minh làm thế nào để sử dụng làm động từ $ _REQUEST trong file PHP.
Code html mẫu cho trang web của bạn
Mã:
<div class="baseHtml">
Click on links to display data in the iframe
<?php
include ("test.php");
?>
<ul>
<li><a href="test.php?do=sampletext" target="iframe1"><span>Sample Text</span></a></li>
<li><a href="test.php?do=moresampletext" target="iframe1"><span>More Sample Text</span></a></li>
</ul>
<iframe
name="iframe1"
src=""
width="800"
height="450"
frameborder="0">
Frames are not supported on your browser
</iframe>
</div>
Đây là nguồn cho test.php
Mã:
<?php
// ############################### start sampletext ###############################
if ($_REQUEST['do'] == 'sampletext')
{
include ("sampletext.html"); // this can also be another PHP file instead of HTML
}
// ############################### start more sample text ###############################
if ($_REQUEST['do'] == 'moresampletext')
{
include ("moresampletext.html"); // you must create your own HTML file here
}
?>
Mẫu code cho sampletext.html
Mã:
<html>
<head>
<title>Sample Text Demonstration</title>
</head>
<body>
<h1 style="
color: #6CB2E4;
font-family: 'Trebuchet MS',Helvetica,Arial,sans-serif;">
Sample Text
</h1>
<h3 style="font-family:arial;">
Sample text for this iframe to demonstrate inline style formatting. Sample text for this iframe to demonstrate inline style formatting.
Sample text for this iframe to demonstrate inline style formatting. Sample text for this iframe to demonstrate inline style formatting.
Sample text for this iframe to demonstrate inline style formatting.
</h3>
<h3 style="font-family: 'Trebuchet MS',Helvetica,Arial,sans-serif;">
It looks like we are getting there!
</h3>
</body>
</html>
Nguồn: xenforo.com
Bài viết liên quan
Bài viết mới