Originally posted by viper21634
you need to go to the windows dir, open up your php.ini, look through(or search) for the register globals. You will need to turn it on, I had the same problem on win2k, that solved it.
Thanks for the Tip, I done that, but now its come up with some more errors.....damn..
Can you still help me out?
I turned the status of the global variables from off to on...
this is the script i am using, followed by the errors....
------SCRIPT
<html>
<body>
<?php
$db = mysql_connect("localhost", "root");
mysql_select_db("mydb",$db);
if ($submit) {
// here if no ID then adding else we're editing
if ($id) {
$sql = "UPDATE employees SET first='$first',last='$last',address='$address',position='$position' WHERE id=$id";
} else {
$sql = "INSERT INTO employees (first,last,address,position) VALUES ('$first','$last','$address','$position')";
}
// run SQL against the DB
$result = mysql_query($sql);
echo "Record updated/edited!<p>";
} elseif ($delete) {
// delete a record
$sql = "DELETE FROM employees WHERE id=$id";
$result = mysql_query($sql);
echo "$sql Record deleted!<p>";
} else {
// this part happens if we don't press submit
if (!$id) {
// print the list if there is not editing
$result = mysql_query("SELECT FROM employees",$db);
while ($myrow = mysql_fetch_array($result)) {
printf("<a href=\"%s?id=%s\">%s %s</a> \n", $PHP_SELF, $myrow["id"], $myrow["first"], $myrow["last"]);
printf("<a href=\"%s?id=%s&delete=yes\">(DELETE)</a><br>", $PHP_SELF, $myrow["id"]);
}
}
?>
<P>
<a href="<?php echo $PHP_SELF?>">ADD A RECORD</a>
<P>
<form method="post" action="<?php echo $PHP_SELF?>">
<?php
if ($id) {
// editing so select a record
$sql = "SELECT FROM employees WHERE id=$id";
$result = mysql_query($sql);
$myrow = mysql_fetch_array($result);
$id = $myrow["id"];
$first = $myrow["first"];
$last = $myrow["last"];
$address = $myrow["address"];
$position = $myrow["position"];
// print the id for editing
?>
<input type=hidden name="id" value="<?php echo $id ?>">
<?php
}
?>
First name:<input type="Text" name="first" value="<?php echo $first ?>"><br>
Last name:<input type="Text" name="last" value="<?php echo $last ?>"><br>
Address:<input type="Text" name="address" value="<?php echo $address ?>"><br>
Position:<input type="Text" name="position" value="<?php echo $position ?>"><br>
<input type="Submit" name="submit" value="Enter information">
</form>
<?php
}
?>
</body>
</html>
-----ERRORS
Bob Smith (DELETE)
John Roberts (DELETE)
Brad Johnson (DELETE)
ADD A RECORD
First name:
Last name:
Address:
Position:
PHP Notice: Undefined variable: submit in C:\Inetpub\wwwroot\mydb.php on line 6 PHP Notice: Undefined variable: delete in C:\Inetpub\wwwroot\mydb.php on line 16 PHP Notice: Undefined variable: id in C:\Inetpub\wwwroot\mydb.php on line 23 PHP Notice: Undefined variable: id in C:\Inetpub\wwwroot\mydb.php on line 37 PHP Notice: Undefined variable: first in C:\Inetpub\wwwroot\mydb.php on line 53 PHP Notice: Undefined variable: last in C:\Inetpub\wwwroot\mydb.php on line 54 PHP Notice: Undefined variable: address in C:\Inetpub\wwwroot\mydb.php on line 55 PHP Notice: Undefined variable: position in C:\Inetpub\wwwroot\mydb.php on line 56
it is showing the errors at the if and else statements