Good morning, guys.
I have a page (index.php) that needs to return the database data to it. I have a .php (connection.php) that connects to the database, see:
$_SG['servidor'] = 'localhost'; // Servidor MySQL
$_SG['usuario'] = 'root'; // Usuário MySQL
$_SG['senha'] = 'XXXX'; // Senha MySQL
$_SG['banco'] = 'projetoqa'; // Banco de dados MySQL
$_SG['paginaLogin'] = '../login.php'; // Página de login
$_SG['tabela'] = 'usuarios'; // Nome da tabela onde os usuários são salvos
// ==============================
// ======================================
// ~ Não edite a partir deste ponto ~
// ======================================
// Verifica se precisa fazer a conexão com o MySQL
if ($_SG['conectaServidor'] == true) {
$_SG['link'] = mysql_connect($_SG['servidor'], $_SG['usuario'], $_SG['senha']) or die("MySQL: Não foi possível conectar-se ao servidor [".$_SG['servidor']."].");
mysql_select_db($_SG['banco'], $_SG['link']) or die("MySQL: Não foi possível conectar-se ao banco de dados [".$_SG['banco']."].");
}
// Verifica se precisa iniciar a sessão
if ($_SG['abreSessao'] == true)
session_start();
The connection I know is OK, since I already used another function of the code to insert content in it. However, on the index.php page where I need to display results, I can not. See the code:
<?php
// Inclui o arquivo com o sistema de segurança
require_once("php/conexao.php");
// executa a query
$busca = "SELECT titulo FROM questoes";
$resultado = mysql_query($busca);
// Encerra a conexão
mysql_close();
?>
And the place where the result should be displayed:
<li><a href="#"><?php $resultado ?></a></li>
Go blank only! Nothing appears. What is the problem with this case? I looked at some forums and other methods of how to perform the search, I could not find. The data in question that returns there, is just a title. For example "How to play video games?"
Thank you!