Eu preciso tirar o codigo popup de um site?

Eu preciso tirar o codigo popup, porque quando clico em uma noticia, abre uma janela popup, como posso fazer para quando clica em um noticia, ir com a mesma pagina...

<?php

include "includes/config.php";

$y = mysql_query("SELECT * FROM tabela Order By id DESC")or die(mysql_error());

while($x = mysql_fetch_array($y))

{

echo'

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

<title>'.$titulo.'</title>

<style type="text/css">

<!--

@import url("estilos/estilos.css");

-->

</style>

</head>

<body>

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

<tr>

<td width="1%"> </td>

<td width="99%"><b><span class="form_ver">'.$x['data'].'</span></b></td>

</tr>

<tr>

<td><img src="imagens/setinha.jpg" width="8" height="8" /></td>

<td><b><span class="form_ver"><a href="#" onClick=window.open("view.php?id='.$x[id].'","Janela","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width='.$width.',height='.$height.'"); return false;" style="color: #000000"><u>'.$x['titulo'].'</u></a></span></b></td>

</tr>

<tr>

<td> </td>

<td class="geral">'.$x['subtitulo'].'</td>

</tr>

</table>

<table width="100%" border="0" cellspacing="0" cellpadding="0">

<tr>

<td height="5" background="imagens/divide.jpg"></td>

</tr>

</table>

</body>

</html>

';

}

?>

Comments

  • Retire a seguinte parte :

    <span class="form_ver"><a href="#" onClick=window.open("view.php?id='.$x[id… return false;" style="color: #000000"><u>'.$x['titulo'].'</u></a>

    substitua por:

    <a href=" seu link "> Clique aqui </a>

Sign In or Register to comment.