lucas.rodrigues Posted January 12, 2012 Report Share Posted January 12, 2012 Digitei esse trecho abaixo e fiz um teste no browserEle me retornou " Resource id #4 " pelo browser e pelo sql me retornou o valor certo q seria 123alguém poderia me ajudar por favor? Agradeço seu tempo e agradeço tambem a ajuda.<?php include("config.php"); $senha = mysql_query("Select senha From usuarios where login = 'teste'"); if(!$senha) { die ('Failed to connect to server: ' . mysql_error()); } else { echo "$senha"; } ?> Quote Link to comment Share on other sites More sharing options...
0 ESerra Posted January 12, 2012 Report Share Posted January 12, 2012 $senha é o resource que contêm o valor da consulta, para acessar você deve usar as funções específicas (mysql_fetch_array, mysql_fetch_array, mysql_result...) Quote Link to comment Share on other sites More sharing options...
0 lucas.rodrigues Posted January 12, 2012 Author Report Share Posted January 12, 2012 Desculpa ai, sou novo em php e mysql e tal.Coloquei do jeito abaixo e testei, me retorna o valor Array, mudei algumas coisas e me retornou o valor 1 sendo q o valor da senha é 555, poderia me ajudar? Muito obrigado peloa atenção.<?php /*Conexao */ $db_local ="localhost:3306"; $db_login ="root"; $db_senha ="tomateverde"; $con = mysql_connect($db_local, $db_login, $db_senha); mysql_select_db("database",$con); if(!$con) { die ('Failed to connect to server: ' . mysql_error()); } $query = mysql_query("Select senha From usuarios where login = 'teste'"); $senha = mysql_fetch_array($query); $resultados = ($senha); if(!$resultados) { die ('Failed to connect to server: ' . mysql_error()); } else { if (($resultados) > "0"){ echo ("$resultados");} } ?> Quote Link to comment Share on other sites More sharing options...
0 ESerra Posted January 12, 2012 Report Share Posted January 12, 2012 $query = mysql_query("Select senha From usuarios where login = 'teste'"); $senha = mysql_fetch_array($query); if(!$query) { die ('Failed to connect to server: ' . mysql_error()); } else { if (mysql_num_rows($query) > "0"){ echo $senha['senha'];} } Quote Link to comment Share on other sites More sharing options...
0 lucas.rodrigues Posted January 12, 2012 Author Report Share Posted January 12, 2012 Muito obrigado mesmo cara!Tenho q entender direito esse fetch! rsvaleu mesmo! Quote Link to comment Share on other sites More sharing options...
Question
lucas.rodrigues
Digitei esse trecho abaixo e fiz um teste no browser
Ele me retornou " Resource id #4 " pelo browser e pelo sql me retornou o valor certo q seria 123
alguém poderia me ajudar por favor? Agradeço seu tempo e agradeço tambem a ajuda.
Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.