لنفترض انك صممت صفحه html و يوجد بها محتوى بالمنتصف و قائمه باليمين و تريد اضافة تصويت بالقائمه اليمنى:
كود HTML:
<html> <head> <title>Poll</title> </head> <body> <div id="content">
محتوى المنتصف
</div> <div id="right">
القائمه اليمنى و مضاف اليها التصويت
<iframe src="http://www.xxxx.com/Poll/poll.php" name="frame1" scrolling="no" frameborder="no" align="center" height = "300px" width = "300px"> </iframe> </div> </body> </html>
و يمكنك ايضآ استبدال iframe ب:
كود PHP:
<?php include('http://www.xxx.com/Poll/poll.php'); ?>