Skip to content
Advertisement

Update SQL from PHP with textbox and button

I am simply trying to create a home webpage to where we can enter the mileage hit update which grabs the vehicle, and current date then pushes it to the DB.

The code I have below displays correctly other than maybe formatting the number to have a , but that wouldn’t be a necessity.

When I hit update I get Notice: Undefined variable: mileage in /var/www/html/Oil/cars.php on line 60

JavaScript

Maybe I’m not passing mileage correctly?

Advertisement

Answer

In your code,

The line 59 and 60 as you said are:

JavaScript

You are assigning the value from form field to $milage, but you are trying to print a variable named $mileage. Check the spelling. They are different. So the variable you are trying to print is obviously undefined.

Change the code to,

JavaScript

Eventhough, it’s just a typo. It can cause lot of debug time. So, try to understand the error and the problem will be somewhere beside it or it will have some relation atleast.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement