Get latest news and Web Designing tutoria

Saturday, 30 May 2015

phpMyAdmin Tables - Adding Records

To insert a new record to the table you created in the previous page select the Insert link at the top of the page:
Click on Insert 

When you click on Insert, you'll be taken to a new area. This one:


The Insert page
As you can see, our four fields are there: ID, First_Name, Surname, and Address. But look at the lengths of the textboxes under the Value. The sizes are determined by the length of the Fields. The address area is a lot bigger, because we used TINYTEXT.
To enter a new record in your table, you type your data in the textboxes under the Value heading. Go ahead and enter the following information for the Value textboxes:
ID: 1
First_Name: Test
Surname: Name
Address: 12 Test Street
Your screen should then look like this:


Values entered into the fields
Finally, click the Go button at the bottom of the screen to create the Row in your table. You will be returned to the Structure screen.
And that's it - you now have a database to work with. To see where it has been saved, navigate to your Wamp folder on your hard drive. Double click the folder called bin\mysql\mysqlx.x.x. Inside this folder will be one called data. This is where all of your databases are stored:


Database folderNotice the folder name in the image above: testDB. This is the same as the database name, and is automatically created for you for all new databases. When you double click this folder, you should see a few files there:


Dataabase file
Notice the files names - they are the same as the tables you create. In other words, they ARE the tables.
If you have PHP web space, you can upload this folder and its contents to your data folder, and you should then be able to access the tables in the database with PHP code.

Related Posts:

  • PHP Comparison Operators  PHP Comparison Operators You saw in the last section how to test what is inside of a variable. You used if, else … if, and else. You used the double equals sign (==) to test whether the variable was the same thin… Read More
  • if ... else Statements in PHP The syntax for the if else statement is this: if (condition_to_test) { } else { } If you look at it closely, you’ll see that you have a normal If Statement first, followed by an “else” part after it. Here’s the “els… Read More
  • Floating point numbers in php A floating point number is one that has a dot in it, like 0.5 and 10.8. You don't need any special syntax to set these types of numbers up. Here's an example for you to try: <?php $first_number = 1.2; $second_… Read More
  • PHP if ... else if Statements Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 … Read More
  • PHP If Statements You saw in the last section that variables are storage areas for your text and numbers. But the reason you are storing this information is so that you can do something with them. If you have stored a username in a vari… Read More

0 comments:

Post a Comment