1つはジョブと呼ばれ、もう1つは属性と呼ばれます。1つのテーブルに多数の属性を含めることができるため、属性テーブルはジョブテーブルに依存します。ジョブテーブルには、いくつかのフィールドが含まれています。
Jobid(自動インクリメント、PRIMARY KEY)、JobName、Jobdescription
属性テーブルには、次のフィールドが含まれています
id(自動インクリメント、PRIMARY KEY、AttribName、Score、Jobid(ジョブテーブルの外部キー)。
ジョブごとに入力する属性の数はさまざまであるため、1つのジョブには10個の属性を含めることができ、もう1つのジョブには2、3、4などの属性を含めることができます。
以下は、行き詰まる前に作成したコードです。
Insert_job.php
<?php
include 'html/head.php';//connect to connect to the database and initialize all functions
include 'scripts/functions/init.php';
include 'html/page_title.php';
include 'html/top_menu.php';
include 'titles/Job_insert.php';
if(empty($_POST)=== false)
{
$R_fields = array('JobName','JobDesc','JobDuties','RecruitmentProcess','ContractType','SPackage');
foreach($_POST as $key=>$value)
{
if (empty($value) && in_array($key,$R_fields)=== true)
{
$errors[] = 'fields marked with (*) are required';
break 1;
}
}
if(empty($errors)=== true)
{
if($_POST['DirectorateName'] == '------ select ------')
{
$errors[] ='Please select Directorate Name';
}
if($_POST['Attributes'] == '-select-')
{
$errors[] ='Please Select the Number of Attributes';
}
}
}
include 'html/job_insert.php';
//Check if the form is not empty then submit details
if(empty($_POST) === false && empty($errors)=== true)
{
//store input into the session variables
$_SESSION['JobName'] = $_POST['JobName'];
$_SESSION['JobDesc'] = $_POST['JobDesc'];
//Store the number of attributes to get captured
$_SESSION['Attributes'] = $_POST['Attributes'];
//redirect
header('Location: Rank.php');
exit();
}
else if(empty($errors) === false)
{
//output errors if the errors array is not empty
echo output($errors);
}
?>
</div> <!-- div class entry ends here -->
</div> <!-- div post ends here -->
</div> <!-- div idcontents ends here -->
<!-- end #content -->
<?php
include 'html/top_side.php';
include 'html/side_other.php';
include 'html/side_bottom.php';
include 'html/footer.php';
?>
すべての入力をセッション変数に格納し、それを次のページに移動して、2つのテーブルにすべてを一度に挿入することに気付くでしょう。
次のコードはRank.php用です
<?php
include 'scripts/functions/init.php';
include 'html/head.php';
include 'html/page_title.php';
include 'html/top_menu.php';
include 'titles/Rank.php';
//declare the Array to store user input
$job_array = array();
//declare the Array to store attributes
$attributes = array();
//declare the Array to store attributes scores
$scores = array();
//Number of input fields selected by user on Job_insert.php page
$Number = $_SESSION['Attributes'];
//User Input from Job_insert.php page
$JobName = $_SESSION['JobName'];
$JobDesc = $_SESSION['JobDesc'];
$JobDuties = $_SESSION['JobDuties'];
$RProcess = $_SESSION['RecruitmentProcess'];
$SPackage = $_SESSION['SPackage'];
$DName = $_SESSION['DirectorateName'];
//Store user input Job details into an array
$job_array = array(
'JobName' =>$JobName,
'JobDesc'=>$JobDesc,
'JobDuties' =>$JobDuties,
'RecruitmentProcess'=>$RProcess,
'SPackage'=>$SPackage,
'DirectorateName'=>$DName);
//Check if the form is not empty then submit details
if(empty($_POST) === false && empty($errors)=== true)
{
//submit job details
job_insert($job_array);
//Store the current jobid into a variable
$jobid = mysql_insert_id();
for($i =0;$i<$Number;$count++)
{
//This is where I am getting stuck
}
//redirect
header('Location: Rank.php');
exit();
}
else if(empty($errors) === false)
{
//output errors if the errors array is not empty
echo output($errors);
}
//フォームを画面に出力しますinclude'html/ Rank.php';
以下は、ユーザー入力を配列に格納する方法の例です。
<form action = "" method ="POST" enctype="multipart/form-data">
<fieldset>
<?php
if($Number == 10)
{
echo '<table border="0">';
echo '<th>'.'Attribute'.'</th>';
echo '<th>'.'Score'.'</th>';
//Print the first row of the result set
echo '<tr>';
//First Form
echo '<td>'.'<input type="text" size="35" name="attributes[]">'.'</td>';
echo '<td>'.'<select id="select1" name ="Score[]">
<option>-select-</option>
<option>10</option>
<option>9</option>
<option>8</option>
<option>7</option>
<option>6</option>
<option>5</option>
<option>4</option>
<option>3</option>
<option>2</option>
<option>1</option>
</select>'.'</td>';
echo '</tr>';
//Second Form
echo '<tr>';
echo '<td>'.'<input type="text" size="35" name="attributes[]">'.'</td>';
echo '<td>'.'<select id="select2" name = "score[]"">
<option>-select-</option>
<option>10</option>
<option>9</option>
<option>8</option>
<option>7</option>
<option>6</option>
<option>5</option>
<option>4</option>
<option>3</option>
<option>2</option>
<option>1</option>
</select>'.'</td>';
echo '</tr>';
基本的に、ユーザー入力を属性と呼ばれる配列とスコアと呼ばれる別の配列に格納しています。ジョブの詳細をジョブテーブルに挿入することは問題なく機能しますが、AttributesandScore配列に含まれる情報をmysqlデータベースに挿入する必要があります。手伝ってください