William Bruno 1501 Denunciar post Postado Setembro 6, 2012 não não @Gabriel Jacinto, nem precisa do while. O correto é: <?php include 'conexao.php'; $sql = "SELECT * FROM posts WHERE nome = 'NOME-DESEJADO'"; $resposta = mysql_query($sql) or die(mysql_error()); $linha = mysql_fetch_array($resposta); $nome = $linha["nome"]; ?> <!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> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title><?php echo $nome; ?> Testando...</title> </head> <body> </body> </html> note que como só é retornada uma única linha, o while não faz sentido. Compartilhar este post Link para o post Compartilhar em outros sites
Apprentice 1 Denunciar post Postado Setembro 6, 2012 Bem, pode até não ser o correto, mas testei e funcionou sem dar erro, mas acho que pelo menos indiquei o caminho (eu acho). Vivendo e aprendendo! Compartilhar este post Link para o post Compartilhar em outros sites
Rzorr 0 Denunciar post Postado Setembro 6, 2012 Como nosso amigo solicitou segue todo código desta pagina <?php include ("conexao.php"); $nom = 'rafael'; $nombre = mysql_query("SELECT * FROM posts WHERE nome = '$nom' ") or die ( mysql_error() ); $linhas = mysql_fetch_array($nombre); echo '<pre>'; var_dump( $linhas ); ?> <!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> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title> <?php echo $linhas['nome']; ?> Teste de titulo </title> </head> </head> <style type="text/css"> .pagn{ display:inline-block; text-decoration:none; border:solid 1px; width:auto; padding:05px; } </style> <body> <?php $p = @$_GET['p']; if(isset($p)){ $p = $p ; }else{ $p = 1; } $reg_pag = 3; $inicio = ($p*$reg_pag)-$reg_pag; $busca = mysql_query("SELECT * FROM posts LIMIT $inicio,$reg_pag"); $resut = mysql_num_rows($busca) or die ("erro ao contar arquivos"); while($linhas = mysql_fetch_array($busca)){ echo $linhas['nome']; echo "</br>"; } $buscas = mysql_query("SELECT * FROM posts "); $result = mysql_num_rows($buscas) or die ("erro ao contar arquivos"); $pags = ceil($result/$reg_pag); $links_max = 3; echo '<a href="index.php?p=1" target="_self" class="pagn">primeira pagina</a> '; for($i=$p-$links_max;$i<=$p;$i++){ if($i<=0){ }else{ echo '<a href="index.php?p='.$i.'" target="_self" class="pagn"> ' .$i. ' </a> '; } } for($i = $p+1; $i <= $p + $links_max; $i++){ if($i >$pags){ }else{ echo '<a href="index.php?p=' .$i. '" target="_self" class="pagn"> '.$i.'</a> '; } } echo '<a href="index.php?p= '.$pags.' " target="_self" class="pagn">ultima pagina</a> '; ?> </body> </html> Compartilhar este post Link para o post Compartilhar em outros sites
Gabriel Jacinto 74 Denunciar post Postado Setembro 6, 2012 não não @Gabriel Jacinto, Sim, mas só postei aquilo pra corrigir. Bem, pode até não ser o correto, mas testei e funcionou sem dar erro, mas acho que pelo menos indiquei o caminho (eu acho). Vivendo e aprendendo! Sim, é verdade hehe :lol: Compartilhar este post Link para o post Compartilhar em outros sites
Rzorr 0 Denunciar post Postado Setembro 9, 2012 Sim, mas só postei aquilo pra corrigir. Sim, é verdade hehe :lol: Alguém mais pode contribuir Obrigado Compartilhar este post Link para o post Compartilhar em outros sites