Jump to content

How would I do this...


Sianide

Recommended Posts

What i meant is this.. Heres an example of what i did when a user logs

<?php

if ($_SESSION['logged'] == 1)  echo "Connected";

else

if ($_SESSION['logged'] == 0)  echo "Not connected ";

 

?>

But can I take that same script and do something like code in the image to show when the user logs in

If you could show me an example of how i would show an image after the if statement i would appreciate it... I'm really new to the PHP Language.

Link to comment
https://forums.phpfreaks.com/topic/203476-how-would-i-do-this/#findComment-1065958
Share on other sites

Another problem... Here's the error:

Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' in C:\xampp\htdocs\main.php on line 225

script:

<?php

if ($_SESSION['logged'] == 0){

echo "<a href="http://www.habpixelz.com/login.php class="colorlink orange"><span> Login";</span></>

}

elseif ($_SESSION['logged'] == 1{

echo "<a href="http://www.habpixelz.com/login.php class="colorlink orange"><span>Client";</span></a>

}

?>

Anyone tell me what i did wrong?

Link to comment
https://forums.phpfreaks.com/topic/203476-how-would-i-do-this/#findComment-1065986
Share on other sites

try this

<?php
if (($_SESSION['logged'] )==false){ 
echo "<a href="http://www.habpixelz.com/login.php class="colorlink orange"><span> Login</span></a>";
}
else (($_SESSION['logged']) == true){ 
echo "<a href="http://www.habpixelz.com/login.php class="colorlink orange"><span>Client</span></a>";
}
?>

Link to comment
https://forums.phpfreaks.com/topic/203476-how-would-i-do-this/#findComment-1065988
Share on other sites

Since you're enclosing a string in double quotes you can't have any double quotes in the string unless you escape them or you enclose the string in single quotes.

 

Change:

<?php
if ($_SESSION['logged'] == 0){ 
echo "<a href="http://www.habpixelz.com/login.php class="colorlink orange"><span> Login";</span></>
}
elseif ($_SESSION['logged'] == 1{ 
echo "<a href="http://www.habpixelz.com/login.php class="colorlink orange"><span>Client";</span></a>
}
?>

to

<?php
if ($_SESSION['logged'] == 0){ 
echo '<a href="http://www.habpixelz.com/login.php" class="colorlink orange">Login</a>';
}
elseif ($_SESSION['logged'] == 1{ 
echo '<a href="http://www.habpixelz.com/login.php" class="colorlink orange">Client</a>';
}
?>

I also fixed a number of problems with the HTML <a> tag that you had.

 

Ken

Link to comment
https://forums.phpfreaks.com/topic/203476-how-would-i-do-this/#findComment-1066000
Share on other sites

try thisjust edited it i found some missing {} tags

 

<?php
ini_set( "display_errors", 0);
include("conf.inc.php"); // Includes the db and form info.
session_start(); // Starts the session.
?>

[code]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<body>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<title>HabPixelz-Demo</title>
<link href="styles/style.css" type="text/css" rel="stylesheet" />
<link href="styles/ads.css" type="text/css" rel="stylesheet" />
<link href="styles/boxes.css" type="text/css" rel="stylesheet" />

<script language="JavaScript" type="text/javascript">
var habboReqPath = "";
var habboStaticFilePath = "";
// http://images.habbohotel.fr/web/web-3.0.1-b25
// Set to true for look like connected, false for look like deconnected
document.habboLoggedIn = true;
window.name = "habboMain";
  </script>
  
  <script language="JavaScript" type="text/javascript" src="js/prototype.js"></script>
  
  <script language="JavaScript" type="text/javascript" src="js/builder.js"></script>
  
  <script language="JavaScript" type="text/javascript" src="js/habbo.js"></script>
  
  <script language="JavaScript" type="text/javascript" src="js/hobojax.js"></script><!--[if IE]> <link href="ie-all.css" type="text/css" rel="stylesheet" /> <![endif]--><!--[if lt IE 7]> <link href="styles/ie6.css" type="text/css" rel="stylesheet" /> <![endif]-->
  
  <link href="styles/style_custom_us.css" type="text/css" rel="stylesheet" />


  
  <link rel="alternate" type="application/rss+xml" title="News" href="news/rss.xml" />
<!-- 3.0.1-b25 - 20070402181028 - fr -->
</head>


<body id="home">


<div id="overlay"></div>


<h1 id="main-header">Habbsite CMS</h1>


<div id="wrapper">
<div align="center">
<div class="ad-scale ad-leader">
<table>


  <tbody>


    <tr>


      <td class="ad-header-tl"></td>


      <td class="ad-header-t"></td>


      <td class="ad-header-tr"></td>


    </tr>


    <tr>


      <td class="ad-header-ml"></td>


      <td class="ad-header-m">
      
      <h5>Advertisement</h5>


      </td>


      <td class="ad-header-mr"></td>


    </tr>


    <tr>


      <td class="ad-content-ml"></td>


       <td class="ad-content-m" align="center" valign="top"><a href="www.stmatthew.123bemyhost.com"><img style="width: 728px; height: 90px;" alt="" src="images/pubs/pub01.png" /></a><br />


      </td>

      <td class="ad-content-mr"></td>


    </tr>


    <tr>


      <td class="ad-content-bl"></td>


      <td class="ad-content-b"></td>


      <td class="ad-content-br"></td>


    </tr>


  
  </tbody>
</table>


</div>


</div>



<div id="top_wrap">
<div id="top">
<div id="enter-hotel"></div>
<div id="topdim"></div>


<div id="top-elements">
<table id="topbar">


  <tbody>


    <tr>


      <td id="topbar-count">Webcome to HabPixelz</td>


      <td id="topbar-menu" align="center">
      
      <ul>


        <li id="myhabbo" class="selected" onmouseover="switchTab('myhabbo')">
          
          <div><a href="http://www.habpixelz.com/myhp" class="topbar-menu-link" onclick="return false;">My HP</a></div>


        </li>
      
      </ul>


      </td>


<td id="topbar-status" class="notloggedin">

<?php

if (isset ($_SESSION['logged'])) {
echo 'Connected';
}
if (!isset($_SESSION['logged']))  {
echo 'Not connected ';
} 

?>
</td>


    </tr>


  
  </tbody>
</table>





<a href=habpixelz.com/client.php <div id="enter-hotel" align="right"></div> 


<div id="tabmenu" onmouseover="lockCurrentTab();" onmouseout="fadeTab('myhabbo')">
<div id="tabmenu-content">
<div id="myhabbo-content" class="tabmenu-inner selected"><img src="http://images.habbohotel.fr/web/web-3.0.1-b25/images/top_bar/myhabbo_frank.gif" alt="" class="tabmenu-image" height="85" width="60" />

<div class="tabmenu-inner-content">
<?php
if (!isset($_SESSION['logged'])){ 
echo '<a href="http://www.habpixelz.com/login.php"><span class="colorlink orange">Login</span></a>';
echo '<a href="http://www.habpixelz.com/logout.php"> <span class="colorlink orange last">Register</span>';
}
if (isset($_SESSION['logged'])){ 
echo '<a href="http://www.habpixelz.com/login.php"> <span class="colorlink orange">Client</span></a>';
echo 'Logout';
}
?>


</div>


</div>


<div id="mycredits-content" class="tabmenu-inner"><div class="tabmenu-inner-content"></div>


</div>


<div id="habboclub-content" class="tabmenu-inner">
<h3>Some text here 1.</h3>


<div class="tabmenu-inner-content">
<p> Some text here 2. </p>


<p> <a href="http://www.habbo.fr/tab/habboclub" class="arrow"><span>Some button text 3.</span></a>
</p>


</div>


</div>


<div class="clear"></div>


</div>


<div id="tabmenu-bottom"></div>


</div>


</div>


<script language="JavaScript" type="text/javascript">
$("tabmenu").style.left = (Position.cumulativeOffset($("myhabbo"))[0] - Position.cumulativeOffset($("top"))[0]) + "px";
</script>
<div id="mainmenu">
<ul>


  <li id="leftspacer"> </li>


  <li id="active"> <span class="left"></span>
    <a href="/"><img src="images/navi/tab_icon_01_home.gif" alt="" />Welcome</a>
    <span class="right"></span> </li>


  <li> <span class="left"></span> <a href="/news.php"><img src="images/navi/tab_icon_02_hotel.gif" alt="" /> News</a> <span class="right"></span>
  </li>


  <li> <span class="left"></span> <a href="www.forum.habpixelz.com"><img src="images/navi/tab_icon_03_community.gif" alt="" />Community</a>
    <span class="right"></span> </li>


  <li> <span class="left"></span> <a href="/entertainment"><img src="images/navi/tab_icon_05_fun.gif" alt="" /> Events</a>
    <span class="right"></span> </li>


  <li> <span class="left"></span> <a href="/games"><img src="images/navi/tab_icon_04_games.gif" alt="" />Games</a> <span class="right"></span>
  </li>


  <li> <span class="left"></span> <a href="http://www.habbo.fr/shop/spreadshirt"><img src="images/navi/tab_icon_07_shop.gif" alt="" /> Shop</a>
    <span class="right"></span> </li>


  <li> <span class="left"></span> <a href="http://www.habbomobile.fr/"><img src="images/navi/tab_icon_06_mobile.gif" alt="" />Mobile</a>
    <span class="right"></span> </li>


  <li> <span class="left"></span> <a href="/credits"><img src="images/navi/tab_icon_10_coins.gif" alt="" />Credits</a>
    <span class="right"></span> </li>


  <li> <span class="left"></span> <a href="/club"><img src="images/navi/tab_icon_09_hc.gif" alt="" /> Club</a> <span class="right"></span>
  </li>


  <li class="last"> <span class="left"></span>
    <a href="/help"><img src="images/navi/tab_icon_08_help.gif" alt="" /> Help</a>
    <span class="right"></span> </li>


</ul>


</div>


<div id="submenu">
<div class="subnav"> </div>


</div>


</div>


</div>


<div id="main-content">
<table class="content-home" border="0" cellpadding="0" cellspacing="0" width="100%">


  <tbody>


    <tr>


      <td colspan="6" style="height: 4px;"></td>


    </tr>


    <tr>


      <td rowspan="2" style="width: 8px;"> </td>


      <td style="width: 740px;" valign="top">
      
      <table border="0" cellpadding="0" cellspacing="0" width="100%">


        <tbody>


          <tr>


            <td colspan="3" style="padding-bottom: 3px;">
            
            <script type="text/javascript">
var promoPages = [
{ image: "<img width=\"425\" vspace=\"0\" hspace=\"0\" height=\"178\" border=\"0\" alt=\"missionlapin 425x178\" id=\"galleryImage\" src=".././images/beach.gif>\n<br /\>", links: [
"<a href=\"http://www.habbo.fr/client\" target=\"client\" onclick=\"openOrFocusHabbo(this); return false;\"\>Entrer!</a\>"
, "<a href=\"http://www.habpixelz.com/news.php">En savoir +</a>"
], text:"Miss Habbo 2007 : l\'??lection<br /\>" },
{ image: "<img width=\"425\" height=\"178\" border=\"0\" alt=\"Club Majestic\" id=\"galleryImage\" src=\"../../images/beach.gif" /\>", links: [
"<a href=\"http://www.habbo.fr/club\">Deviens HC !</a>", "<a href=\"http://www.habbo.fr/credits\">Avoir des cr??dits</a>"
], text:"Tous les avantages du Habbo Club<br /\>" },
{ image: "<img width=\"425\" height=\"178\" border=\"0\" alt=\"TopStories picnic\" id=\"galleryImage\" src=\"http://images.habbohotel.fr/c_images/promo_images/TopStories_picnic.gif\" /\>", links: [
"<a href=\"http://www.habbo.fr/community\">C\'est ici !</a>"
], text:"Toutes les infos de la communaut?? Habbo<br /\>" },
{ image: "<img width=\"425\" height=\"178\" border=\"0\" alt=\"TopStories credits\" id=\"galleryImage\" src=\"http://images.habbohotel.fr/c_images/promo_images/TopStories_credits.gif\" /\>", links: [
"<a href=\"http://www.habbo.fr/help/faqs\">FAQs</a>", "<a href=\"http://www.habbo.fr/help/parents_guide.html\">Guide Parents</a>"
], text:"Aide et s??curit??<br /\>" }
];
            </script>
            
            <div id="promoarea">
            
            <div id="promoheader">
            
            <h2>multi pages window</h2>


            
            <ul style="display: none;" id="promoheader-selectors">


              <li><a href="#" class="selected" onclick="showPromo(0); return false;">1</a></li>


              <li><a href="#" onclick="showPromo(1); return false;">2</a></li>


              <li><a href="#" onclick="showPromo(2); return false;">3</a></li>


              <li><a href="#" onclick="showPromo(3); return false;">4</a></li>


            
            </ul>


            
            <script type="text/javascript">
$('promoheader-selectors').style.display = "block";
            </script>
            </div>


            
            <div id="promocontent">
            
            <div id="promobody">
            
            <p id="promoimage"><a href="http://www.habbo.fr/client" target="client" onclick="openOrFocusHabbo(this); return false;"><img alt="missionlapin 425x178" id="galleryImage" src="http://images.habbohotel.fr/c_images/album2280/topstories_miss.png" border="0" height="178" hspace="0" vspace="0" width="425" /><br />


            </a> </p>


            
            <div class="promotext">
            
            <p id="promotext-content">Miss Habbo 2007 :
l'???lection<br />


            </p>


            </div>


            
            <div id="promolinks">
            
            <ul id="promolinks-list">


              <li><a href="http://www.habbo.fr/client" target="client" onclick="openOrFocusHabbo(this); return false;">Entrer!</a></li>


              <li><a href="http://www.habbo.fr/entertainment/misshabbo2007">En
savoir +</a></li>


            
            </ul>


            </div>


            </div>


            </div>


            </div>


            
            <div id="newsbox">
            
            <div id="newsbox-header">
            
            <h2>news</h2>


            <a href="/news/rss.xml"><img src="http://images.habbohotel.fr/web/web-3.0.1-b25/images/promo_area/feed-icon.gif" alt="" border="0" /></a> </div>


            
            <div id="newsbox-text">
            
            <div class="newsitem">
            
            <?PHP
$number=3;
include("/home/habpixel/public_html/news2/show_news.php");
?>
            
            <div class="hr"> </div>


            
            <div class="newsitem oldnewsitem">
            
            
            </div>


            
            <div class="newsitem oldnewsitem">
            
          
            </div>


            </div>


            
            <div id="newsbox-footer">
            
            <div class="promo-button"><a href="/news.php" alt="">More info</a></div>


            </div>


            </div>


            </td>


          </tr>


          <tr>


            <td style="width: 215px; height: 400px;" class="habboPage-col" valign="top">
            
            <div class="v2box red light">
            
            <div class="headline">
            
            <h3>Welcome to Habbsite CMS</h3>


            </div>


            
            <div class="border">
            
            <div></div>


            </div>



            
            <div class="body"> <img alt="frank welcome1" id="galleryImage" src="http://images.habbohotel.fr/c_images/album1358/frank_welcome1.gif" align="left" border="0" height="99" width="67" />Hi !<br />

Welcome to Habbsite CMS !<br />

Habbsite CMS is an complete copy of official Habbo website. But
Habbsite CMS can be consulted offline, all images are saved ! No
contacting Habbo website server !<br />

Enjoy this news version <br />

            <br />

MoussPSP<br />


            
            <div class="clear"></div>


            </div>

            
            <div class="bottom">
            
            <div></div>


            </div>


            </div>


            
            <div class="v2box red light">
            
            <div class="headline">
            
            <h3>Simplifize you</h3>


            </div>


            
            <div class="border">
            
            <div></div>


            </div>


            
            <div class="body"> <span style="font-weight: bold;"></span>Good links for making your life better.<br />


            <span style="font-weight: bold;"> </span><br />


            
            <table id="table1" border="0" width="100%">


              <tbody>


                <tr>


                  <td align="center"><img src="http://images.habbohotel.fr/c_images/album1822/aideenfance.png" alt="" /></td>


                  <td align="center"><span style="font-weight: bold;">Friends</span><a target="_blank" href="http://www.habbo.fr/help/aide_a_l_enfance.html"></a><br />


                  </td>


                </tr>


                <tr>


                  <td align="center"><a target="_blank" href="http://www.habbohotel.fr/iot/go?lang=fr_FR&country=fr"><img src="http://images.habbohotel.fr/c_images/album1822/aide.png" alt="" /></a></td>


                  <td align="center"><span style="font-weight: bold;">Help Center</span><a target="_blank" href="http://www.habbohotel.fr/iot/go?lang=fr_FR&country=fr"></a></td>


                  <td align="center"><br />


                  </td>


                  <td align="center"><br />


                  </td>


                </tr>


                <tr>


                  <td align="center"><img src="http://images.habbohotel.fr/c_images/album1822/conseilsecu.png" alt="" align="bottom" border="0" hspace="0" vspace="0" /></td>


                  <td align="center"><span style="font-weight: bold;">Go to school...</span><a target="_blank" href="http://www.habbo.fr/help/Account_security"></a></td>


                  <td align="center"><br />


                  </td>


                  <td align="center"><br />


                  </td>


                </tr>


              
              </tbody>
            
            </table>


            
            <div class="clear"></div>


            </div>


            
            <div class="bottom">
            
            <div></div>


            </div>


            </div>


            
            <div class="v2box red light">
            
            <div class="headline">
            
            <h3>Some Tips</h3>


            </div>


            
            <div class="border">
            
            <div></div>


            </div>


            
            <div class="body"> <br />


            
            <div align="center">
            
            <table border="0" cellpadding="0" cellspacing="0">


              <tbody>


                <tr>


                  <td background="http://images.habbohotel.fr/c_images/album1541/kopflinks.gif" height="19" width="4"><br />


                  </td>


                  <td background="http://images.habbohotel.fr/c_images/album1541/kopfmitte.gif" height="19" width="177"><br />


                  </td>


                  <td background="http://images.habbohotel.fr/c_images/album1541/kopfrechts.gif" height="19" width="4"><br />


                  </td>


                </tr>


                <tr>


                  <td background="http://images.habbohotel.fr/c_images/album1541/links.gif" height="159" width="4"><br />


                  </td>


                  <td background="http://images.habbohotel.fr/c_images/album1541/mitte.gif" height="159" width="177"><font face="verdana" size="-5"><span style="font-style: italic; font-weight: bold;"><span style="text-decoration: underline;">MoussPSP:</span> </span><br />


                  <br />


                  <br />


Thanks for downloading Habbsite CMS !<br />


                  <br />


                  </font></td>


                  <td background="http://images.habbohotel.fr/c_images/album1541/rechts.gif" height="159" width="4"><br />


                  </td>


                </tr>


              
              </tbody>
            
            </table>


            <br />


            </div>


            
            <div align="center">Some text here<a href="http://www.habbo.fr/help"></a><br />


            </div>


            
            <div class="clear"></div>


            </div>


            
            <div class="bottom">
            
            <div></div>


            </div>


            </div>


            </td>


            <td style="width: 215px; height: 400px;" class="habboPage-col" valign="top">
            
            <div class="v2box green light">
            
            <div class="headline">
            
            <h3>Habbo Cola</h3>


            </div>


            
            <div class="border">
            
            <div></div>


            </div>


            
            <div class="body">
            
            <p align="center"><img alt="Bubblejuicesign" id="galleryImage" src="http://images.habbohotel.fr/c_images/album332/Bubblejuicesign.gif" border="0" height="64" width="59" /><br />


            <span style="font-weight: bold;"></span><br />

An Habbo Cola Poster ? It's a fish or a lemon ?<a href="/credits"></a><br />

            </p>


            </div>


            
            <div class="bottom">
            
            <div></div>


            </div>


            </div>


            
            <div class="v2box green light">
            
            <div class="headline">
            
            <h3>Take a drink and sit.</h3>


            </div>


            
            <div class="border">
            
            <div></div>


            </div>


            
            <div class="body">
            
            <p align="center"><img alt="Area Pink Bar Stool" id="galleryImage" src="http://images.habbohotel.fr/c_images/album1487/Area_Pink_Bar_Stool.gif" border="0" height="46" width="32" /><br />


What a beatiful Pink Area furni !</p>


            </div>


            
            <div class="bottom">
            
            <div></div>


            </div>


            </div>


            
            <div class="v2box green light">
            
            <div class="headline">
            
            <h3>I'm free !</h3>


            </div>


            
            <div class="border">
            
            <div></div>


            </div>


            
            <div class="body"> <img alt="Credits Pile of Coins (110)" id="galleryImage" src="http://images.habbohotel.fr/c_images/common/coins_big_110.gif" align="right" border="0" height="103" width="110" />I
hate buy. You too ? Cool ! Habbsite CMS is totally free ! But he have
an Copyright by MoussPSP Corporation, please don't remove the copyright
text in the footer of the page, if any you don't respect the license.
            
            <div class="clear"></div>


            </div>


            
            <div class="bottom">
            
            <div></div>


            </div>


            </div>


            
            <div class="v2box green light">
            
            <div class="headline">
            
            <h3>Bloc Title</h3>


            </div>


            
            <div class="border">
            
            <div></div>


            </div>


            
            <div class="body"> <img src="http://images.habbohotel.fr/c_images/album372/2players_1.gif" id="galleryImage" alt="" align="right" border="0" height="53" hspace="10" width="55" />Some text here
            
            <div class="clear"></div>


            </div>


            
            <div class="bottom">
            
            <div></div>


            </div>


            </div>


            
            <div class="v2box green light">
            
            <div class="headline">
            
            <h3>Bloc Title</h3>


            </div>


            
            <div class="border">
            
            <div></div>


            </div>


            
            <div class="body"> <span style="font-weight: bold;"></span>Some text here<a href="/hotel/info_bus.html" target="_self" style="font-weight: bold;"></a><span style="text-decoration: underline;"><br />


            </span>
            
            <div class="clear"></div>


            </div>


            
            <div class="bottom">
            
            <div></div>


            </div>


            </div>


            </td>


            <td style="width: 310px; height: 400px;" class="habboPage-col rightmost" valign="top">
            
            <div class="v2box blue light">
            
            <div class="headline">
            
            <h3>Bloc Title</h3>


            </div>


            
            <div class="border">
            
            <div></div>


            </div>


            
            <div class="body">Some Text here.<br />

            
            <div class="clear"></div>


            </div>


            
            <div class="bottom">
            
            <div></div>


            </div>


            </div>


            
            <div class="v2box blue light">
            
            <div class="headline">
            
            <h3>Advertissement</h3>


            </div>


            
            <div class="border">
            
            <div></div>


            </div>


            
            <div class="body"><img style="width: 300px; height: 250px;" alt="" src="images/pubs/pub03.png" /></div>


            
            <div class="bottom">
            
            <div></div>


            </div>


            </div>


            
            <div class="v2box blue light">
            
            <div class="headline">
            
            <h3>A funny table.</h3>


            </div>


            
            <div class="border">
            
            <div></div>


            </div>


            
            <div class="body">
            
            <table id="table1" border="0" width="100%">


              <tbody>


                <tr>


                  <td style="font-weight: bold;" bgcolor="#ffffff">Title 1<br />


                  </td>


                  <td style="font-weight: bold;" bgcolor="#ffffff">Title 2<br />


                  </td>


                  <td style="font-weight: bold;" bgcolor="#ffffff">Title 3<br />


                  </td>


                </tr>


                <tr>


                  <td bgcolor="#9dd1e7">Text<br />


                  </td>


                  <td bgcolor="#9dd1e7">Text</td>


                  <td bgcolor="#9dd1e7">Text<a href="http://www.habbo.fr/client?forwardId=2&roomId=1330861" target="client" onclick="roomForward(this, '1330861', 'private', false); return false;"> </a> </td>


                </tr>


                <tr>


                  <td bgcolor="#e6efef" height="41">Text
                  </td>


                  <td bgcolor="#e6efef" height="41">Text
                  </td>


                  <td bgcolor="#e6efef" height="41">Text<a href="http://www.habbo.fr/client?forwardId=2&roomId=1901093" target="client" onclick="roomForward(this, '1901093', 'private', false); return false;"></a> 
                  </td>


                </tr>


                <tr>


                  <td bgcolor="#9dd1e7">Text
                  </td>


                  <td bgcolor="#9dd1e7">Text</td>


                  <td bordercolor="#ffff00" bgcolor="#9dd1e7">Text<a href="http://www.habbo.fr/client?forwardId=2&roomId=460676" target="client" onclick="roomForward(this, '460676', 'private', false); return false;">
                  </a> 
                  </td>


                </tr>


                <tr>


                  <td bgcolor="#e6efef" height="41">Text</td>


                  <td bgcolor="#e6efef" height="41">Text</td>


                  <td bgcolor="#e6efef" height="41">Text<a href="http://www.habbo.fr/client?forwardId=2&roomId=1378840" target="client" onclick="roomForward(this, '1378840', 'private', false); return false;">
                  </a> </td>


                </tr>


                <tr>


                  <td bgcolor="#9dd1e7"> Text
                  </td>


                  <td bgcolor="#9dd1e7">Text
                  </td>


                  <td bordercolor="#ffff00" bgcolor="#9dd1e7">Text<a href="http://www.habbo.fr/client?forwardId=2&roomId=3205233" target="client" onclick="roomForward(this, '3205233', 'private', false); return false;"></a> 
                  </td>


                </tr>


              
              </tbody>
            
            </table>


            <br />


What a cool table ! Use it correctly <a target="_self" href="http://www.habbo.fr/community/Events.html"></a>
            
            <div class="clear"></div>


            </div>


            
            <div class="bottom">
            
            <div></div>


            </div>


            </div>


            
            <div class="v2box blue light">
            
            <div class="headline">
            
            <h3>Habbo Homes</h3>


            </div>


            
            <div class="border">
            
            <div></div>


            </div>


            
            <div class="body">
            
            <p align="center"><img src="http://images.habbohotel.fr/c_images/album1840/home_small.png" alt="" align="middle" border="0" hspace="0" vspace="0" /></p>


Hey !<br />

            <a href="http://www.habbo.fr/home"><span style="font-weight: bold;"></span></a><span style="font-weight: bold;"></span>Habbo Homes are not aviable in this version of Habbsite CMS.<br />

Be quiet, the habbo homes will be added in futures versions !<br />


            
            <div class="clear"></div>


            </div>


            
            <div class="bottom">
            
            <div></div>


            </div>


            </div>


            
            <div class="v2box blue light">
            
            <div class="headline">
            
            <h3>Bloc Title </h3>


            </div>


            
            <div class="border">
            
            <div></div>


            </div>


            
            <div class="body"> <img alt="downloads_habbo_in_pc.gif" id="galleryImage" src="http://images.habbohotel.fr/c_images/content/downloads_habbo_in_pc.gif" align="right" border="0" height="57" width="58" />Some text here<br />


            
            <div class="clear"></div>


            </div>


            
            <div class="bottom">
            
            <div></div>


            </div>


            </div>


            </td>


          </tr>


        
        </tbody>
      
      </table>


      </td>


      <td rowspan="2" style="width: 4px;"></td>


      <td rowspan="2" style="margin-left: 4px; width: 176px;" valign="top">
      
      <div id="ad_sidebar">
      
      <div class="cooperation">
      
      <table valign="middle" align="center" background="http://images.habbohotel.fi/c_images/themes/partner_box.gif" border="0" cellpadding="0" cellspacing="0" height="120" width="168">


        <tbody>


          <tr>


            <td>Please visit the forum!<br />
              <br />            </td>
          </tr>
        </tbody>
      </table>


      </div>


      
      <div class="ad-scale ad160">
      
      <table>


        <tbody>


          <tr>


            <td class="ad-header-tl"></td>


            <td class="ad-header-t"></td>

Link to comment
https://forums.phpfreaks.com/topic/203476-how-would-i-do-this/#findComment-1066002
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.