Mysql
 sql >> Database >  >> RDS >> Mysql

QUERY ED ECHO Dati NEI campi HTML INPUT

Ho testato quanto segue e funziona bene. @Fred-ii- ti ha fornito un sacco di buone informazioni, specialmente usando il debug degli errori, ma devi fornire l'oggetto di connessione che ti mancava.

<?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";
            }
        ?>
    </