The code below gives error, it does not add the results of $row
, only the comma and the period. What to do?
Code that does not work
mysql_select_db('cadastro',$conexao);
$sql="select * from usuario";
$resultado = mysql_query($sql) or die ("Erro: " . mysql_error());
// Obtém o resultado de uma linha como um objeto
while($row = mysql_fetch_array($resultado))
$variavel=($row['email'].",".$row['senha']."^") ;
// quero que tudo isso que esta entre () vire uma $variavel
echo $variavel
?>
Code that works fine
<?php
@$conexao = mysql_connect('localhost','root','');
mysql_select_db('cadastro',$conexao);
$sql="select * from usuario";
$resultado = mysql_query($sql) or die ("Erro: " . mysql_error());
// Obtém o resultado de uma linha como um objeto
while($row = mysql_fetch_array($resultado))
echo $row['email'].",".$row['senha']."";
echo "^";
?>
This is the code, so the result that it appears to me is EXAMPLE: [email protected], 123456, ^
Email and password are in my database What I want is that all this echo, this result becomes a variable