iFrame Play with Pages

  • Thread starter Thread starter PVS
  • Ngày gửi Ngày gửi

PVS

Super Moderator
Thành viên BQT
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
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​
 
  • Like
Reactions: THB
cần sp gì thì inbox hoặc pm. Anh sẽ hỗ trợ nhé!
Tiện thể cảm ơn xếp cái vụ fb luôn
Cái đó không phải do ae nhà mình làm sai.
Mà có làm chục lần vẫn không được
Lý do là hostinger không hỗ trợ login fb, tw, g+...
Đổi host khác được ngay sau 3s
Thêm 1 kinh nghiệm xương máu không có trong sách vở để chia sẽ cho các anh em.
 
  • Like
Reactions: THB
Tiện thể cảm ơn xếp cái vụ fb luôn
Cái đó không phải do ae nhà mình làm sai.
Mà có làm chục lần vẫn không được
Lý do là hostinger không hỗ trợ login fb, tw, g+...
Đổi host khác được ngay sau 3s
Thêm 1 kinh nghiệm xương máu không có trong sách vở để chia sẽ cho các anh em.
:oops:
 
  • Like
Reactions: THB
Back
Top