Meerdere sql query's?
Maar, de tabel Groep_Eigenschappen ziet er als volgt uit:
CREATE TABLE `Groep_Eigenschappen` (
`Groep_Eigenschap_ID` int(11) NOT NULL auto_increment,
`Groep2_ID` int(11) NOT NULL default '0',
`Groep1_ID` int(11) NOT NULL default '0',
`Eigenschap_ID` int(11) NOT NULL default '0',
`Volgorde` int(11) NOT NULL default '0',
`Verplicht` tinyint(4) NOT NULL default '0',
PRIMARY KEY (`Groep_Eigenschap_ID`)
) TYPE=MyISAM AUTO_INCREMENT=48 ;
Dus er komt voor elk eigenschap een ander record in de database.
Maar hoe doe ik dit met mijn SQL Query in mn php code.
Hieronder vind je mijn code:
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<? session_start(); ?>
<? include "../header.php" ?>
<span class="kop">Eigenschappen in een groep stoppen</span>
<hr />
<?
if($_SERVER['REQUEST_METHOD'] == "POST")
{
if($_SESSION["eigenschap"])
{
$eigenschap = $_SESSION["eigenschap"];
}
if(!$_SESSION["groep_id"])
{
$rij = mysql_fetch_object(select_record('Groepen', 'Groep_ID', $_POST["groepen"]) );
$_SESSION["groep_id"] = htmlspecialchars($rij->Groep_ID);
$_SESSION["groep_naam"] = htmlspecialchars($rij->Groep_Naam);
mysql_free_result($rij);
}
?>
<table>
<tr>
<td width="" align="left" valign="top">
<fieldset><legend><? echo $_SESSION["groep_naam"]; ?></legend>
<?
if(isset($_POST['Submit']))
{
$naam = $_POST["hidnaam"];
$id = $_POST["hidid"];
$eigenschap["eigenschapnaam"][] = $naam;
$eigenschap["eigenschapid"][] = $id;
}
while(list($id,$naam) = each($eigenschap["eigenschapnaam"]))
{
$i = '1';
?>
groep id:<input name="groepid" type="text" value="<? echo $_SESSION["groep_id"] ?>" size="3">
eigenschap:<input type="text" name="naamtoevveld" value="<? echo $naam ?>" disabled>
<input type="hidden" name="ideig" value="<? $query = "SELECT Eigenschap_ID FROM Eigenschappen
WHERE Eigenschap_Naam = '".$naam."'";
$result = mysql_query($query);
while ($rij = mysql_fetch_array($result))
{
echo "".$rij['Eigenschap_ID']." ";
} ?>">
verplicht:<input type="checkbox" name="verplicht" value="1">
<input type="submit" name="omhoog" value="up">
<input type="submit" name="omlaag" value="down">
volgorde nummer:<input name="volgorde" type="text" value="<? echo $i ?>" size="4">
<input type="submit" name="terug" value="-">
<br>
<?
}
?>
<form method='post' action='<? $_SERVER['PHP_SELF'] ?>'>
<input type='submit' name='doen' value='Doen!'>
</form>
<?
if(isset($_POST['doen']))
{
$query = "INSERT INTO Groep_Eigenschappen (Groep2_ID, Eigenschap_ID, Volgorde, Verplicht)
VALUES ('".$_POST["groepid"]."', '".$_POST["ideig"]."', '".$_POST["volgorde"]."', '".$_POST["verplicht"]."')";
$result = mysql_query($query);
if (!$result)
{
trigger_error("SQL", E_USER_ERROR);
}
else
{
echo " Jahoor het is je gelukt ";
}
}
?>
</fieldset>
</td>
<td width="">
<fieldset><legend>Eigenschappen</legend>
<?
$result = select_eigenschap();
$counter = 0;
while($rij = mysql_fetch_object($result))
{
if ($counter > 1)
{
$counter = 0;
}
$id = ($rij->Eigenschap_ID);
$naam = ($rij->Eigenschap_Naam);
?>
<table><tr class='row<? echo $counter ?>'>
<td width='20'><? echo $id ?></td>
<td width='100'><? echo $naam ?></td>
<form method='post' action='<? $_SERVER['PHP_SELF'] ?>'>
<input type='hidden' name="hidid" value='<? echo $id ?>'>
<input type='hidden' name="hidnaam" value='<? echo $naam ?>'>
<td><input type='submit' name='Submit' value='+'></td>
</form>
</tr></table>
<?
$counter++;
}
?>
</fieldset>
</td>
</tr>
</table>
<?
$_SESSION["eigenschap"] = $eigenschap;
}
else
{
?>
<?
unset($_SESSION["eigenschap"]);
unset($_SESSION["groep_id"]);
unset($_SESSION["groep_naam"]);
?>
<form method="post" action="<?=$_SERVER['PHP_SELF'];?>">
<input type="hidden" name="soort" value="select"/>
<table width="312" border="0">
<tr>
<td width="103">Groepen:</td>
<td width="199">
<select name="groepen" size="1">
<option value="do"> </option>
<?
$result = select_groep();
while($rij = mysql_fetch_object($result))
{
$id = htmlspecialchars($rij->Groep_ID);
$naam = htmlspecialchars($rij->Groep_Naam);
echo "<option value=\"".$id."\">".$naam."</option>\n";
}
?>
</select>
</td>
</tr>
<tr>
<td> </td>
<td><input type="submit" value="Eigenschappen toevoegen"></td>
</tr>
</table>
</form>
<?
}
?>
<? include "../footer.php" ?>
<? include "../header.php" ?>
<span class="kop">Eigenschappen in een groep stoppen</span>
<hr />
<?
if($_SERVER['REQUEST_METHOD'] == "POST")
{
if($_SESSION["eigenschap"])
{
$eigenschap = $_SESSION["eigenschap"];
}
if(!$_SESSION["groep_id"])
{
$rij = mysql_fetch_object(select_record('Groepen', 'Groep_ID', $_POST["groepen"]) );
$_SESSION["groep_id"] = htmlspecialchars($rij->Groep_ID);
$_SESSION["groep_naam"] = htmlspecialchars($rij->Groep_Naam);
mysql_free_result($rij);
}
?>
<table>
<tr>
<td width="" align="left" valign="top">
<fieldset><legend><? echo $_SESSION["groep_naam"]; ?></legend>
<?
if(isset($_POST['Submit']))
{
$naam = $_POST["hidnaam"];
$id = $_POST["hidid"];
$eigenschap["eigenschapnaam"][] = $naam;
$eigenschap["eigenschapid"][] = $id;
}
while(list($id,$naam) = each($eigenschap["eigenschapnaam"]))
{
$i = '1';
?>
groep id:<input name="groepid" type="text" value="<? echo $_SESSION["groep_id"] ?>" size="3">
eigenschap:<input type="text" name="naamtoevveld" value="<? echo $naam ?>" disabled>
<input type="hidden" name="ideig" value="<? $query = "SELECT Eigenschap_ID FROM Eigenschappen
WHERE Eigenschap_Naam = '".$naam."'";
$result = mysql_query($query);
while ($rij = mysql_fetch_array($result))
{
echo "".$rij['Eigenschap_ID']." ";
} ?>">
verplicht:<input type="checkbox" name="verplicht" value="1">
<input type="submit" name="omhoog" value="up">
<input type="submit" name="omlaag" value="down">
volgorde nummer:<input name="volgorde" type="text" value="<? echo $i ?>" size="4">
<input type="submit" name="terug" value="-">
<br>
<?
}
?>
<form method='post' action='<? $_SERVER['PHP_SELF'] ?>'>
<input type='submit' name='doen' value='Doen!'>
</form>
<?
if(isset($_POST['doen']))
{
$query = "INSERT INTO Groep_Eigenschappen (Groep2_ID, Eigenschap_ID, Volgorde, Verplicht)
VALUES ('".$_POST["groepid"]."', '".$_POST["ideig"]."', '".$_POST["volgorde"]."', '".$_POST["verplicht"]."')";
$result = mysql_query($query);
if (!$result)
{
trigger_error("SQL", E_USER_ERROR);
}
else
{
echo " Jahoor het is je gelukt ";
}
}
?>
</fieldset>
</td>
<td width="">
<fieldset><legend>Eigenschappen</legend>
<?
$result = select_eigenschap();
$counter = 0;
while($rij = mysql_fetch_object($result))
{
if ($counter > 1)
{
$counter = 0;
}
$id = ($rij->Eigenschap_ID);
$naam = ($rij->Eigenschap_Naam);
?>
<table><tr class='row<? echo $counter ?>'>
<td width='20'><? echo $id ?></td>
<td width='100'><? echo $naam ?></td>
<form method='post' action='<? $_SERVER['PHP_SELF'] ?>'>
<input type='hidden' name="hidid" value='<? echo $id ?>'>
<input type='hidden' name="hidnaam" value='<? echo $naam ?>'>
<td><input type='submit' name='Submit' value='+'></td>
</form>
</tr></table>
<?
$counter++;
}
?>
</fieldset>
</td>
</tr>
</table>
<?
$_SESSION["eigenschap"] = $eigenschap;
}
else
{
?>
<?
unset($_SESSION["eigenschap"]);
unset($_SESSION["groep_id"]);
unset($_SESSION["groep_naam"]);
?>
<form method="post" action="<?=$_SERVER['PHP_SELF'];?>">
<input type="hidden" name="soort" value="select"/>
<table width="312" border="0">
<tr>
<td width="103">Groepen:</td>
<td width="199">
<select name="groepen" size="1">
<option value="do"> </option>
<?
$result = select_groep();
while($rij = mysql_fetch_object($result))
{
$id = htmlspecialchars($rij->Groep_ID);
$naam = htmlspecialchars($rij->Groep_Naam);
echo "<option value=\"".$id."\">".$naam."</option>\n";
}
?>
</select>
</td>
</tr>
<tr>
<td> </td>
<td><input type="submit" value="Eigenschappen toevoegen"></td>
</tr>
</table>
</form>
<?
}
?>
<? include "../footer.php" ?>
Gewijzigd op 01/01/1970 01:00:00 door Maurice kransse
Lees de FAQ eens door betreffende het plaatsen van een nieuwe post.