SnownZ 0 Denunciar post Postado Fevereiro 8, 2010 Galera desculpem se eu postei na area errada sou novato e nao manjo nada de fórum estou aprendendo ainda, pois não achei á area de suporte estou com um erro segue abaixo: Desculpe aulto não tenho 15 post omg :S Estou com 1 erro em 1 php de notícia que estou criando alguem poderia me ajudar por favor? <?PHP require('_inc/header.php'); if (isset($_GET['write'])) { $argv = explode('-',$_GET['write']); settype($argv,'array'); $_GET['op'] = @$argv[0]; $_GET['url'] = @$argv[1]; $_GET['do'] = @$argv[2]; $_GET['key'] = @$argv[3]; } ?> <?php $id_noticias=$_GET["id_noticias"];// echo "$id_noticias"; $conexao=mysql_connect("localhost","root",""); mysql_select_db("noticias"); $sql="SELECT * FROM noticias where id_noticias='$id_noticias'"; $resultado=mysql_query($sql); $pegar=mysql_fetch_array($resultado); echo " <table style="width: 475px" cellspacing="0" cellpadding="0" class="trangchu01"> <tr> <td style="width:28px;height:50px;"><img alt="" src="images/box_left_1.PNG" width="28" height="50" /></td> <td style=" text-align:right;width:419px;background-image:url('images/box_mid_1.PNG');background-repeat:repeat-x;" valign="top"><img src="images/noticias.png" alt="" width="78" height="30" border="0" /></td> <td style="width:28px;height:50px;"><img alt="" src="images/box_right_1.PNG" width="28" height="50" /></td> </tr> <tr> <td style="width:28px;background-image:url('images/box_left_2.PNG');background-repeat:repeat-y;"> </td> <td valign="top" style="width:419px;vertical-align:top;"><table style="width: 419px;" cellspacing="0" cellpadding="0" class="trangchu01"> <tr> <td><table style="width: 419px;" cellspacing="0" cellpadding="0" class="trangchu01"> <tr> <td style=" width:20px;text-align:center;"><img src="images/bt_notice.gif" width="31" height="11" border="0" /></td> <td style="width:399px;"> $pegar[titulo] </td> </tr> <tr> <td style=" width:20px;text-align:center;"> </td> <td style="width:399px;"> <span style=" font-family:Arial;font-size:11px;color:#333333;font-weight:700;">Data: $pegar[data]</span></td> </tr> </table></td> </tr> <tr> <td style="padding-top:30px; padding-bottom:10px;"><table style="width: 419px;" cellspacing="0" cellpadding="0" class="trangchu01"> <tr> <td valign="top" style="width:419px;vertical-align:top;"><span class="trangchu03X"> <div> <div> $pegar[mensagem] </div> </div> <div> Atenciosamente, $pegar[autor] </div> </span></td> </tr> </table></td> </tr> <tr> <td style="padding-top:10px; padding-bottom:5px;"><table style="width: 419px;" cellspacing="0" cellpadding="0" class="trangchu01"> <tr> <td style=" text-align:right; height:20px;"><input name="Button1" type="button" value="Voltar" onclick="history.go(-1);" /></td> </tr> <tr> <td style=" text-align:center; height:20px;"><p><span style=" width:20px;text-align:center;"><img src="images/bt_notice.gif" width="31" height="11" border="0" /></span> <a href="noticia_1.asp" class="copyright_font"><span style="width:399px;">Bem vindos (a)</span></a></p> <hr noshade="noshade" style="height: 1px;border:1px gray dotted;" /></td> </tr> </table></td> </tr> </table></td> <td style="width:28px;background-image:url('images/box_right_2.PNG');background-repeat:repeat-y;"> </td> </tr> <tr> <td><img alt="" src="images/box_left_3.PNG" /></td> <td style="background-image:url('images/box_mid_2.PNG');background-repeat:repeat-x;"> </td> <td><img alt="" src="images/box_right_3.PNG" /></td> </tr> </table> <table align='right'> "; ?> </span> ERRO QUE DÁ E ESSE: Parse error: parse error, expecting `','' or `';'' in c:\arquivos de programas\easyphp1-8\www\noticia.php on line 29 Obrigado ~~ Compartilhar este post Link para o post Compartilhar em outros sites
HJHESS 0 Denunciar post Postado Fevereiro 8, 2010 O erro ta no teu echo, pq ele começa com ( " ) aspas duplas, e no meio da string ta cheio de ( " ) aspas duplas sem ser escapadas com uma ( \ ) barra. Compartilhar este post Link para o post Compartilhar em outros sites