• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Insert Website On Website :P [READ HERE]

lord azteck

New Member
Joined
Jan 4, 2009
Messages
221
Reaction score
3
As the title says, how can i insert a website in my website?
like this:
http://exellence.sytes.net:8090/?subtopic=wikia

tibia wikia in her Gesior page.

and how can i put player records on my page?
like this:
http://exellence.sytes.net:8090/?subtopic=records
I've got this script:
Code:
        <div id="ContentColumn">
          <div class="Content">
            <div id="ContentHelper"><script type="text/javascript" src="http://static.tibia.com/javascripts/newsticker.js"></script>
		
    <div id="wikia" class="Box">
    <div class="Corner-tl" style="background-image:url(layouts/tibiacom/images/content/corner-tl.gif);"></div>

    <div class="Corner-tr" style="background-image:url(layouts/tibiacom/images/content/corner-tr.gif);"></div>
    <div class="Border_1" style="background-image:url(layouts/tibiacom/images/content/border-1.gif);"></div>
    <div class="BorderTitleText" style="background-image:url(layouts/tibiacom/images/content/title-background-green.gif);"></div>
    <img class="Title" src="layouts/tibiacom/images/header/headline-wikia.gif" alt="Contentbox headline" />
    <div class="Border_2">
      <div class="Border_3">
        <div class="BoxContent" style="background-image:url(layouts/tibiacom/images/content/scroll.gif);">
		<iframe name="forum" height="600" width="100%" border="0" frameborder="0" src="http://tibia.wikia.com/wiki/Items"></iframe> <b> Now you can search for anything inside of tibia</b> posted By Admin.       </div>

      </div>
    </div>
    <div class="Border_1" style="background-image:url(layouts/tibiacom/images/content/border-1.gif);"></div>

    <div class="CornerWrapper-b"><div class="Corner-bl" style="background-image:url(layouts/tibiacom/images/content/corner-bl.gif);"></div></div>
    <div class="CornerWrapper-b"><div class="Corner-br" style="background-image:url(layouts/tibiacom/images/content/corner-br.gif);"></div></div>
  </div>
           </div>
          </div>
it works, and all but in the website it doesn't whows in the central possition
SCREENSHOT:

and below appears the website like this:



I know how to do the part of
index.php
layouts/tibiacom/ etc.. etc..
thanks!
 
Last edited:
ahh i know what your talking about, my forums uses that same method..sec.


<?PHP
if(!empty($config['site']['forum_link']))
$main_content .= '<iframe name="forum" height="600" width="100%" border="0" frameborder="0" src="'.$config['site']['forum_link'].'"></iframe>';
else
$main_content .= 'Forum address not configured.';
?>

configured the site of otland forums in my config as you can see you will have to do the same.. for yours
 
Back
Top