0
「休日の家」をアップロードするには、1つのフォームを使用する必要があります。しかし、プロパティに必要な詳細は、プロパティ、価格、郡、イメージの複数のテーブルに格納されています。私は、アップロードをクリックすると、プロパティがデータベースにアップロードされていない1つのフォームを使用して複数のデータベーステーブルにアップロードする
<?php
include("../connections/conn.php");
$sentpropname = $_POST['propertyname'];
$sentpropdesc = $_POST['description'];
$insertquery1 = "INSERT INTO Properties (ID, Name, Description, County_ID)
VALUES (NULL, '$sentpropname', '$sentpropdesc', NULL)";
$result1 = mysqli_query($conn, $insertquery1);
$sentpropcounty = $_POST['county'];
$insertquery2 = "INSERT INTO County (ID, County)
VALUES (NULL, '$sentpropcounty')";
$result2 = mysqli_query($conn, $insertquery2);
$filename = $_FILES['propimgs']['name'];
$filetemp = $_FILES['propimgs']['tmp_name'];
move_uploaded_file($filetemp,"../images/$filename");
$insertquery3 = "INSERT INTO Image (ID, Property_ID, Path) VALUES (NULL, 0,
'$filename')";
$result3 = mysqli_query($conn, $insertquery3);
$sentpriceautummin = $_POST['amin'];
$sentpriceautummax = $_POST['amax'];
$sentpricespringmin = $_POST['spmin'];
$sentpricespringmax = $_POST['spmax'];
$sentpricesummermin = $_POST['sumin'];
$sentpricesummermax = $_POST['sumax'];
$sentpricewintermin = $_POST['wmin'];
$sentpricewintermax = $_POST['wmax'];
$insertpricequery = "INSERT INTO Prices"
. "(id, Property_ID, AutumnMinPrice, AutumnMaxPrice, SpringMinPrice, "
. "SpringMaxPrice, SummerMinPrice, SummerMaxPrice, WinterMinPrice,
WinterMaxPrice)"
. "VALUES(0, 0, '$sentpriceautummin', '$sentpriceautummax', "
. "'$sentpricespringmin', '$sentpricespringmax', '$sentpricesummermin', "
. "'$sentpricesummermax', '$sentpricewintermin', '$sentpricewintermax')";
$resultpricequery = mysqli_query($conn, $insertpricequery) or die(mysqli_error($conn));
mysqli_close($conn);
:
<form class="pure-form pure-form-stacked" action="propsubmit.php"
method="post" name="uploadproperty" enctype="multipart/form-data"
style="margin-left: 20px; color:black">
<fieldset><br>
<label for="propertyname" class="button button-alt"
style="background-color:white" >Property Name:</label>
<input id="propertyname" name="propertyname" type="text" placeholder="Enter name here.... " size="50" required="required"/><br>
<label for="description" class="button button-alt" style="background-color:white "> Description:</label>
<textarea rows="10" cols="100" name="description" placeholder="Enter description here...." required="required"></textarea><br>
<label for="county" class="button button-alt" style="background-color:white">County:</label>
<select id="county" name="county" placeholder="Choose County" required="required">
<option value="antrim">Antrim</option>
<option value="down">Down</option>
<option value="derry">Derry</option>
</select>
<label for="amin" class="button button-alt" style="background-color:white" >Autumn minimum price:</label>
<input id="amin" name="amin" type="text" placeholder="Price.... " size="10" required="required"/><br>
<label for="amax" class="button button-alt" style="background-color:white" >Autunm maximum price:</label>
<input id="amax" name="amax" type="text" placeholder="Price.... " size="10" required="required"/><br>
<label for="spmin" class="button button-alt" style="background-color:white" >Spring minimum price:</label>
<input id="spmin" name="spmin" type="text" placeholder="Price.... " size="10" required="required"/><br>
<label for="spmax" class="button button-alt" style="background-color:white" >Spring maximum price:</label>
<input id="spmax" name="spmax" type="text" placeholder="Price.... " size="10" required="required"/><br>
<label for="sumin" class="button button-alt" style="background-color:white" >Summer minimum price:</label>
<input id="sumin" name="sumin" type="text" placeholder="Price.... " size="10" required="required"/><br>
<label for="sumax" class="button button-alt" style="background-color:white" >Summer maximum price:</label>
<input id="sumax" name="sumax" type="text" placeholder="Price.... " size="10" required="required"/><br>
<label for="wmin" class="button button-alt" style="background-color:white" >Winter minimum price:</label>
<input id="wmin" name="wmin" type="text" placeholder="Price.... " size="10" required="required"/><br>
<label for="wmax" class="button button-alt" style="background-color:white" >Winter maximum price:</label>
<input id="wmax" name="wmax" type="text" placeholder="Price.... " size="10" required="required"/><br>
<label for="propimage" class="button button-alt" style="background-color:white">Images:</label>
<input name="propimgs" type="file" multiple="required"/><br>
<br>
<button type="submit" class="button button-alt" name="search">Upload Property</button>
<button type="reset" class="button button-alt">Reset</button>
</fieldset>
</form>
これは私のsubmitpropコードです:これは私のフォームのコードです。私のコードで逃したことはありますか?
エコー$のinsertquery1 = "INSERT INTOプロパティ(ID、名前、説明、County_ID) VALUES(NULL、 '$のsentpropname'、 '$のsentpropdesc'、NULL)" を試してみてください。 これをphpmyadmin –
で実行し、プライマリキーをidに追加してください。 $ insertquery1 = "INSERT INTOプロパティ(名前、説明、County_ID)VALUES( '"。$ sentpropname。 "'、 '"。$ sentpropdesc 。"'、 ヌル)"; –
あなたのIDファイルは自動インクリメントですね。 – Akintunde007