Skip to content
Advertisement

Why I can’t Pass values to the database using php

I have built an ISBN generator using PHP. However, Once ISBN Number is generated it’s not stored in the database.

Here is the index.php

JavaScript

Here is the isbn.php

JavaScript

Here is the generate-isbn.php

JavaScript

Database Structure

Why the values are not passing? Save the book to the database code in the generate-isbn.php. Values are generated but only one value is stored in the database. If I want to save the generated value in the database I have to delete the previous value that was stored in the database and run the script. Then it gets stored, After it doesn’t store then I have to re-run the process delete the value an run the code. What could be the issue?

Advertisement

Answer

The id column in your books table is primary key but you also have to set it AUTO_INCREMENT. Then you can insert rows more than one.

To do this you have to first click change action.

Change column attributes

Then check A_I checkbox in Structure panel.

Auto Increment

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