joaquim Posted February 11, 2021 at 11:26 PM Report Share #621313 Posted February 11, 2021 at 11:26 PM (edited) Olá pessoal, alguém poderia me ajudar com esta questão? Se pegar este SELECT o resultado será "1ª Sessão 2021-01-01", porém, se tentar colocar em uma variável a resposta no echo é "Resource id #4", onde estou errando? <?php $query= "SELECT CONCAT_WS( ' ', calendario.numero, calendario.title, calendario.date) FROM calendario INNER JOIN exp_abert ON exp_abert.exab_sessant_id = calendario.id INNER JOIN pautas_cad ON exp_abert.exab_pc_id = pautas_cad.pc_id"; $result = mysql_query($query); echo $result; ?> Desde já agradeço. Edited February 12, 2021 at 09:17 AM by M6 Formatação de código. Link to comment Share on other sites More sharing options...
M6 Posted February 12, 2021 at 09:20 AM Report Share #621315 Posted February 12, 2021 at 09:20 AM O resultado da função que executa a query é um cursor que tens de iterar linha a ninha e, por cada linha (um array), tens de ler a informação que queres. Eis um exemplo: while($linha = mysql_fetch_assoc($result)){ echo $linha['title'] .'<br/>'; } 10 REM Generation 48K! 20 INPUT "URL:", A$ 30 IF A$(1 TO 4) = "HTTP" THEN PRINT "400 Bad Request": GOTO 50 40 PRINT "404 Not Found" 50 PRINT "./M6 @ Portugal a Programar." Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now