Just turning your code chunk into a function:
function getUserById ($userId)
{
$user = new User();
$resultado = mysqli_query($conexao, "select * from usuarios where id= {$userId}");
$dado = mysqli_fetch_assoc($resultado);
echo $dado['nome'];
echo $dado['sobrenome'];
}
Or, if you want the function with feedback, to reuse the code:
function getUserById ($userId)
{
$user = new User();
$resultado = mysqli_query($conexao, "select * from usuarios where id= {$userId}");
$dado = mysqli_fetch_assoc($resultado);
return $dado;
}
//usar a informação retornada:
$user = getUserById("5001");
echo $user['id'];
echo $user['nome'];
echo $user['sobrenome'];
Interestingly yours is the best answer :) Just learn to format better. Edit see the existing formatting options.
– Maniero
Thanks @Mineiro
– Francis Vagner da Luz