Ciao a tutti
Ho un form php
codice HTML:
<form action = "reg.php" method = "POST">        
Nome<input type = "text" name = "fullname" placeholder = "Nome">     
Username<input type = "text" name = "username" placeholder = "Username">        
Password<input type = "password" name = "password" placeholder="Password">        
Upload Imagine: <input type="file" name="image" id="image">        
<input type = "submit" id = "submit" value = "Iscriviti">
</form> 
Bene,questo è una piccola parte di codice di reg.php(quello del form)
Codice PHP:

$fullname 
$_POST['fullname'];
$username $_POST['username'];
$password $_POST['password'];
$image $_POST['image'];
$submit $_POST['submit'];
echo 
$image
Quando faccio echo $image vorrei visualizzare l'immagine e non il nome del file
Qualcuno può aiutarmi?

Grazie