Tópicos semelhantes
Painel de Usuario
Mensagens: 0
Alterar
Informações
Preferências
Assinatura
Avatar
Ver
Amigos e ignorados
Tópicos supervisionados
Rascunhos
Tópicos favoritos
Tópicos & Mensagens
Mensagens Privadas
Meus tópicos
Tópicos que participo
Minhas mensagens
Novas mensagens
()
Informações
Preferências
Assinatura
Avatar
Ver
Amigos e ignorados
Tópicos supervisionados
Rascunhos
Tópicos favoritos
Tópicos & Mensagens
Mensagens Privadas
Meus tópicos
Tópicos que participo
Minhas mensagens
Novas mensagens
()
Últimos assuntos
Peixes
De Ração aos peixes
Comentarios nas noticia do seu hotel
Página 1 de 1
Comentarios nas noticia do seu hotel
lá pessoal do World Forum .
Vá em \ inc \ tpl \comp-newsarticle.tpl e substituís por ele:
Vá no localhost na tabela "site_news_comments" na aba "SQL" a colé esse codigo.
Prontinho.
Imagem:
Vá em \ inc \ tpl \comp-newsarticle.tpl e substituís por ele:
- Código:
<?php
$_SESSION['id'] = $users->GetUserVar(USER_ID, 'id');
?>
<div class="habblet-container ">
<div class="cbb clearfix notitle ">
<div id="article-wrapper">
<h2>%news_article_title%</h2>
<div class="article-meta">
<?php if ($news_article_id > 0) { ?>
%news_article_date%
%news_category%
<?php } ?>
</div>
<?php if (strlen(trim($news_article_summary)) > 0) { ?>
<p class="summary">
%news_article_summary%
</p>
<?php } ?>
<div class="article-body">
%news_article_body%
</div>
<?php if ($news_article_id > 0) { ?>
<script type="text/javascript" language="Javascript">
document.observe("dom:loaded", function() {
$$('.article-images a').each(function(a) {
Event.observe(a, 'click', function(e) {
Event.stop(e);
Overlay.lightbox(a.href, "La imagen está cargando");
});
});
$$('a.article-%news_article_id%').each(function(a) {
a.replace(a.innerHTML);
});
});
</script>
<?php } ?>
</div>
</div>
</div>
<?php
if(isset($_POST['post_comment']))
$posted_on = date("M j, Y g:i A");
if (! isset($_POST['comment'])) {
$_POST['comment'] = ''; // nu bestaat de variabele ten minste
}
$comment = strip_tags ($_POST['comment']);
if($comment == NULL){
$error_message = 'Has dejado un campo vacío.
';
}else{
if (LOGGED_IN)
{
mysql_query("INSERT INTO site_news_comments (article, userid, comment, posted_on) VALUES ('".$news_article_id."', '".$_SESSION['id']."', '".$comment."', '".$posted_on."');");
$error_message = 'Has dejado un comentario correctamente.
';
}
}
?>
<div class="habblet-container ">
<div class="cbb clearfix notitle ">
<div id="article-wrapper"><h2>Escribe un comentario</h2>
<div class="article-meta"></div>
<div class="article-body">
<form action="" method="post">
<textarea name="comment" maxlength="500"></textarea>
<input type="submit" name="post_comment" value="Enviar" />
</form>
</div>
</div>
</div>
</div>
<style type="text/css">
input[type="text"], input[type="password"] {
background-color: #F1F1F1;
border: 1px solid #999999;
width: 175px;
padding: 5px;
font-family: verdana;
font-size: 10px;
color: #666666;
}
input[type="submit"] {
background-color: #F1F1F1;
border: 1px solid #999999;
padding: 5px;
font-family: verdana;
font-size: 10px;
color: #666666;
}
textarea {
background-color: #F1F1F1;
border: 1px solid #999999;
padding: 5px;
width: 517px;
height: 70px;
font-family: verdana;
font-size: 10px;
color: #666666;
}
select {
background-color: #F1F1F1;
border: 1px solid #999999;
padding: 5px;
font-family: verdana;
font-size: 10px;
color: #666666;
}
</style>
<?php
$getComments = mysql_query("SELECT * FROM site_news_comments WHERE article = '".$news_article_id."' ORDER by id DESC");
?>
<div class="habblet-container ">
<div class="cbb clearfix notitle ">
<div id="article-wrapper"><h2>Comentarios (<?php echo mysql_num_rows($getComments); ?>)</h2>
<div class="article-meta"></div>
<div class="article-body">
<?php
if(mysql_num_rows($getComments) == 0){
echo 'Todavía no hay comentarios';
}else{
echo '<table width="528px">';
while($Comments = mysql_fetch_array($getComments)){
$getUserInfo = mysql_query("SELECT * FROM users WHERE id = '".$Comments['userid']."'");
$userInfo = mysql_fetch_array($getUserInfo);
echo '
<tr>
<td width="90px" valign="top">
<div style="float:left"><img src="http://www.habbo.com/habbo-imaging/avatarimage?figure='.$userInfo['look'].'&size=b&direction=2&head_direction=3&gesture=sml&size=m"></div>
';
if($userInfo['rank'] > 8){
echo '<div style="position: absolute; z-index:1"><img src="http://www.ferbo.nl/c_images/album1584/AD1.gif"></div>';
}
echo '
</td>
<td width="427px" valign="top">
<strong>RE: %news_article_title%</strong>
'.$Comments['comment'].'
</td>
</tr>
<tr>
<td width="90px" valign="top">
</td>
<td width="427px" align="right">
<i>Por: <strong><a href="#">'.$userInfo['username'].'</a></strong> enviado el '.$Comments['posted_on'].'</i>
</td>
</tr>';
}
echo '</table>';
}
?>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>
Vá no localhost na tabela "site_news_comments" na aba "SQL" a colé esse codigo.
- Código:
CREATE TABLE IF NOT EXISTS `site_news_comments` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`article` int(11) NOT NULL,
`userid` int(11) NOT NULL,
`comment` varchar(500) NOT NULL,
`posted_on` varchar(150) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=294 ;
Prontinho.
Imagem:
Página 1 de 1
Permissões neste sub-fórum
Não podes responder a tópicos
Sex Jun 28, 2013 5:53 pm por EffectHeatGunZ
» Painel CMSE - Download
Ter Fev 07, 2012 6:18 pm por ivandisson1
» Teen Gunz - Vem, Muito Bom (:
Ter Jan 24, 2012 11:05 am por Brielzin
» [Download] Key Binder
Qua Nov 02, 2011 10:45 am por Brasileiro
» Apresentação "Vibe"
Qui Jun 30, 2011 10:38 pm por thiago_perfect
» Download de Crossfire
Qui Jun 30, 2011 10:32 pm por thiago_perfect
» Criando Uma Rádio(Tutorial Definitivo)
Qui Jun 30, 2011 10:28 pm por thiago_perfect
» MU - Instalando Mu no linux
Qui Jun 30, 2011 10:21 pm por thiago_perfect
» Brasil Street Extreme [RPG v2.5]
Qui Jun 30, 2011 10:19 pm por thiago_perfect
» Apresentação " GuiAntonio " - Combat Arms - ' Hevos '
Ter Mar 01, 2011 1:53 pm por Osmar
» [PC]Manhas para Gta Vice City
Qua Fev 23, 2011 10:59 am por Osmar
» Holograph Emu+Habbo Retro R3 Beta = Wired Furni e Battle Banzai Funcionando!
Ter Fev 22, 2011 10:27 pm por Osmar
» Alesandro 4.B - FUNFANDO 100%
Ter Fev 22, 2011 2:10 pm por Osmar
» [TUTORIAL] Começando no Tibia [TUTORIAL]
Ter Fev 22, 2011 2:05 pm por Osmar
» New Avatar " Brasileiro "
Ter Fev 22, 2011 2:02 pm por Osmar