Codice PHP:
<html>
<body bgcolor="#7fffd4">
<form enctype="multipart/form-data" action="" name="File" method="post">
<center><table cellspacing="30" border="3" width="40%" bordercolor="green">
<tr>
<td width="50%"><FONT Color="Blue" Face="Comic sans ms">Cognome</td></font>
<td><input type="text" name="cognome" size="40" required></td>
</tr>
<tr>
<td width="50%"><FONT Color="Blue" Face="Comic sans ms">Nome</td></font>
<td width="50%"><input type="text" name="Nomev" size="40" required></td>
</tr>
<tr>
<td width="50%"><FONT Color="Blue" Face="Comic sans ms">Indirizzo</td></font>
<td width="50%"><input type="text" name="Indirizzo" size="40" required></td>
</tr>
</table></center>
<center><table cellspacing="30" border="3" width="40%" bordercolor="white">
<tr>
<td width="50%"><FONT Color="Blue" Face="Comic sans ms">Cap</td></font>
<td width="50%"><input type="text" name="Cap" size="40" required></td>
</tr>
<tr>
<td width="50%"><FONT Color="Blue" Face="Comic sans ms">Citta</td></font>
<td width="50%"><input type="text" name="Citta" size="40" required></td>
</tr>
<tr>
<td width="50%"><FONT Color="Blue" Face="Comic sans ms">Nazione</td></font>
<td width="50%"><input type="text" name="Nazione" size="40" required></td>
</tr>
</table></center>
<center><table cellspacing="30" border="3" width="40%" bordercolor="red">
<tr>
<td width="50%"><FONT Color="Blue" Face="Comic sans ms">Telefono</td></font>
<td width="50%"><input type="text" name="Telefono" size="40" required></td>
</tr>
<tr>
<td width="50%"><FONT Color="Blue" Face="Comic sans ms">Email</td></font>
<td width="50%"><input type="email" name="Email" size="40" required></td>
</tr>
<tr>
<td width="50%"><FONT Color="Blue" Face="Comic sans ms">Oggetto da vendere</td></font>
<td width="50%"><input type="text" name="oggetto" size="40" required></td>
</tr>
<tr>
<td><FONT Color="Blue" Face="Comic sans ms">Carica la foto dell'oggetto:</td>
<td><input class="text" type="file" name="file" required></td>
</tr>
</table></center>
<center><input type="submit" name="carica" value="carica"><center>
</form>
</body>
</html>
<?php
require('db.php');
if(isset($_POST['carica'])){
$nome_temporaneo = $_FILES['file']['tmp_name'];
$nome = $_FILES['file']['name'];
$size = $_FILES['file']['size'];
$tipo = $_FILES['file']['type'];
$contenuto = addslashes(file_get_contents($nome_temporaneo));
$cognome=$con->escape_string($_POST['cognome']);
$Nomev=$con->escape_string($_POST['Nomev']);
$Indirizzo=$con->escape_string($_POST['Indirizzo']);
$Cap=$con->escape_string($_POST['Cap']);
$Citta=$con->escape_string($_POST['Citta']);
$Nazione=$con->escape_string($_POST['Nazione']);
$Telefono=$con->escape_string($_POST['Telefono']);
$Email=$con->escape_string($_POST['Email']);
$oggetto=$con->escape_string($_POST['oggetto']);
$sql="insert into upload (nome,size,tipo,file,Nomev,cognome,Indirizzo,Cap,Citta,Nazione,Telefono,Email,oggetto)VALUES('$nome','$size','$tipo','$contenuto','$cognome','$Nomev','$Indirizzo','$Cap','$Citta','$Nazione','$Telefono','$Email','$oggetto')";
if ($con->query($sql) === TRUE) {
echo "<center>"."HAI INVIATO LA RICHIESTA TI CONTATTEREMO AL PIU PRESTO"."</center>";
} else {
echo "Errore:assicurati che il file sia .png " ;
}
}
questo è lo script per inviare foto nel database,come mi ha detto @alemoppo viene salvato dove ho salvato lo script ma su altervista non trovo le immagini che salvo