undefined variable
Undefined variable: submit2
Maar als ik de variabele als volgt declareer, krijg ik een foutmelding.
Ik heb het zo gedaan.
$submit2 = "";
$resultaat = "" ;
$resultaat = mysql_query($query, $db);
Wat doe ik fout?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; utf8_unicode_ci"/>
<title></title>
<link rel= "stylesheet" href="menu_style.css" type="text/css" />
<link rel="stylesheet" href="styles.css" type="text/css" media="print" />
<link href="opmaak3.css" rel="stylesheet" type="text/css"/>
<div id="container">
<div id="header3">
Code (php)
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
<?
include ("db_connect.inc.php");
$query = "SELECT * FROM pas WHERE optie3 LIKE '%". $_POST["optie3"] . "%'" or die(mysql_error());
// de SQL-query die wordt uitgevoerd
$resultaat = "" ;
$resultaat = mysql_query($query, $db);
mysql_close($db); // database afsluiten
?>
include ("db_connect.inc.php");
$query = "SELECT * FROM pas WHERE optie3 LIKE '%". $_POST["optie3"] . "%'" or die(mysql_error());
// de SQL-query die wordt uitgevoerd
$resultaat = "" ;
$resultaat = mysql_query($query, $db);
mysql_close($db); // database afsluiten
?>
</head>
<body>
<h2>Je hebt het volgende getal getypt.</h2>
<hr>
Code (php)
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
<?php
while(list($pasid, $optie1, $optie2, $optie3) = mysql_fetch_row($resultaat)){
{
if($submit1)
{
?>
while(list($pasid, $optie1, $optie2, $optie3) = mysql_fetch_row($resultaat)){
{
if($submit1)
{
?>
<fieldset>
</fieldset> <br><br>
</body>
</html>
De index is als volgt:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf8_unicode_ci" />
<title></title>
<link rel= "stylesheet" href="menu_style.css" type="text/css" />
<link href="opmaak3.css" rel="stylesheet" type="text/css"/>
</head>
<div id="container">
<div id="header3">
Typ je leerlingnummer.
<form action="getallenlijst.php" method="post">
<input type="int" name="optie3" value"" size="30">
<input type="Submit" name="submit1"value="Klik">
<input type="Submit" name="submit2"value="Klik2">
<input type="Button"value="Terug" onclick="javascript:history.back();">
</form>
</div>
</div>
http://www.phphulp.nl/php/forum/topic/notice-undefined-variable/60897/
de error betekend dat de variable sumbit12 nog niet gedefineerd is
if(isset($_POST['submit12'])) {
zo kan je het oplossen als het goed is.
Sander
het gebruik van code tags kan ook helpen om je code overzichtelijk te houden in PHPHulp, code binnen [] dus
Oke, ik ga ermee aan het werk.