<?php echo $_SESSION['user_id'];
require ("db_connect.php");
if (isset($_POST['descrizione'])):
// x un nuovo annuncio usa il form
$user_id = $_POST['user_id'];
$aid = $_POST['aid'];
$cid = $_POST['cid'];
$did = $_POST['did'];
$eid = $_POST['eid'];
$fid = $_POST['fid'];
$gid = $_POST['gid'];
$zid = $_POST['zid'];
$descrizione=$_POST["descrizione"];
$descrizione=ereg_replace("\n","<br>",$descrizione);
$mq = $_POST['mq'];
$via = $_POST['via'];
$locali = $_POST['locali'];
$prezzo = $_POST['prezzo'];
$tipologia = $_POST['tipologia'];
$altro = $_POST['altro'];
$cats = $_POST['cats'];
$nome_file_temporaneo = $_FILES['file_inviato']['tmp_name'];
$nome_file_vero = $_FILES['file_inviato']['name'];
$tipo_file = $_FILES['file_inviato']['type'];
$dati_file = file_get_contents($nome_file_temporaneo);
$dati_file = addslashes($dati_file);
$nome_file_temporaneo2 = $_FILES['file_inviato2']['tmp_name'];
$nome_file_vero2 = $_FILES['file_inviato2']['name'];
$tipo_file2 = $_FILES['file_inviato2']['type'];
$dati_file2 = file_get_contents($nome_file_temporaneo2);
$dati_file2 = addslashes($dati_file2);
$nome_file_temporaneo3 = $_FILES['file_inviato3']['tmp_name'];
$nome_file_vero3 = $_FILES['file_inviato3']['name'];
$tipo_file3 = $_FILES['file_inviato3']['type'];
$dati_file3 = file_get_contents($nome_file_temporaneo3);
$dati_file3 = addslashes($dati_file3);
$nome_file_temporaneo4 = $_FILES['file_inviato4']['tmp_name'];
$nome_file_vero4 = $_FILES['file_inviato4']['name'];
$tipo_file4 = $_FILES['file_inviato4']['type'];
$dati_file4 = file_get_contents($nome_file_temporaneo4);
$dati_file4 = addslashes($dati_file4);
$nome_file_temporaneo5 = $_FILES['file_inviato5']['tmp_name'];
$nome_file_vero5 = $_FILES['file_inviato5']['name'];
$tipo_file5 = $_FILES['file_inviato5']['type'];
$dati_file5 = file_get_contents($nome_file_temporaneo5);
$dati_file5 = addslashes($dati_file5);
$nome_file_temporaneo10 = $_FILES['file_inviato10']['tmp_name'];
$nome_file_vero10 = $_FILES['file_inviato10']['name'];
$tipo_file10 = $_FILES['file_inviato10']['type'];
$dati_file10 = file_get_contents($nome_file_temporaneo10);
$dati_file10 = addslashes($dati_file10);
if(get_magic_quotes_gpc()) {
$descrizione=stripslashes($descrizione);
}
$descrizione =mysql_real_escape_string($descrizione);
if ($aid == '') {
exit('<p>Scegli la provincia x l annuncio. Click "Back" and try again.</p>');
}
if ($cid == '') {
exit('<p>Scegli il comune x l annuncio. Click "Back" and try again.</p>');
}
if ($did == '') {
exit('<p>Scegli la regione x l annuncio. Click "Back" and try again.</p>');
}
if ($eid == '') {
exit('<p>Scegli il tipo cliente x l annuncio. Click "Back" and try again.</p>');
}
if ($fid == '') {
exit('<p>Scegli il canale dell annuncio. Click "Back" and try again.</p>');
}
if ($gid == '') {
exit('<p>Scegli le condizioni dell immobile. Click "Back" and try again.</p>');
}
if ($zid == '') {
exit('<p>Scegli lo stato dell annuncio. Click "Back" and try again.</p>');
}
$sql = "INSERT INTO annunci SET
descrizione='$descrizione',
mq='$mq',
locali='$locali',
prezzo='$prezzo',
tipologia='$tipologia',
altro='$altro',
via='$via',
provinciaid='$aid',
cittaid='$cid',
regioneid='$did',
clienteid='$eid',
tipoid='$fid',
condizioniid='$gid',
statoid='$zid',
nome_file = '$nome_file_vero',
tipo_file = '$tipo_file',
dati_file = '$dati_file',
nome_file2 = '$nome_file_vero2',
tipo_file2 = '$tipo_file2',
dati_file2 = '$dati_file2',
nome_file3 = '$nome_file_vero3',
tipo_file3 = '$tipo_file3',
dati_file3 = '$dati_file3',
nome_file4 = '$nome_file_vero4',
tipo_file4 = '$tipo_file4',
dati_file4 = '$dati_file4',
nome_file5 = '$nome_file_vero5',
tipo_file5 = '$tipo_file5',
dati_file5 = '$dati_file5',
nome_file10 = '$nome_file_vero10',
tipo_file10 = '$tipo_file10',
dati_file10 = '$dati_file10',
user_id=".$_SESSION['user_id']."";
if (@mysql_query($sql)) {
echo '<p></p>';
} else {
exit('<p>Errore aggiunta nuovo annuncio: ' . mysql_error() . '</p>');
}
$quanti=mysql_num_rows(mysql_query($sql));//guardi quanti annunci ha
//ho messo per esempio 10
if($quanti <= 10){
//inserisci l'annuncio
}else{
echo "hai gia inserito 10 annunci, non puoi inserirne altri";
}