sql >> Base de Datos >  >> RDS >> Mysql

CONSULTA Y ECHO Datos EN campos de ENTRADA HTML

He probado lo siguiente y funciona bien. @Fred-ii- te dio mucha información buena, especialmente usando la depuración de errores, pero necesitas proporcionar el objeto de conexión que te faltaba.

<?php
    error_reporting( E_ALL );

    include("conn.php");

    $val = 6;

    /* What is the name of the $connection object ? */
    $result = mysqli_query( $conn, "Select * from `test` where `testid`='$val'" );
    $name=( $result ) ? mysqli_fetch_assoc( $result ) : false;

?>  
<html>
    <head>
        <title>Ya gotta have a title...</title>
    </head>
    <body>
        <?php
            if( !empty( $name ) ){
                echo "
                    <form>
                        Name: <input type='text' id='firstname' value='{$name['firstname']}'/>
                    </form>";
            } else {
                echo "No such name exists";
            }
        ?>
    </