PHP MySQL select Query Syntax From the Table with MySQLi Example Code


PHP Select Data in MySQL To select data from the table select query is used. To select all row so you have to use ” * ” symbol. But if you want to select a particular row or column so you have to put the name of a particular row or column. Example – 1 […]
Arduino Serial read, available Function Example and UART Loopback



PHP MySQL insert Query Syntax into the Table with MySQLi Example Code


PHP Insert Data Into MySQL To insert a data in the MySQL database you have to use insert query. In other words Insert is used to add new records. Important points The string must be quoted. Numeric values must not be quoted. The word NULL must not be quoted. In the previous artical we created […]
Arduino Serial Communication Port Test Example with write and begin Function



PHP MySQL Create Table Query With MySQLi Example Code and MySQLi_query Function


Create a MySQL Table Using MySQLi The CREATE TABLE statement is used to create a table in MySQL. We will create a table named “User”, with five columns: “id”, “firstname”, “lastname”, “email_id” and “age”: Example – 1 Create a MySQL Table Example ` Important points of the table above: The data type specifies what type […]
PHP MySQL Connection With MySQLi Example Code and mysqli_connect Function



Arduino LED Fade Code with analogWrite function on Analog Output or PWM Pins of Uno Board



How to Use phpMyAdmin and How select, insert, update, delete and drop table



Arduino Button or Switch Interface Circuit without Pull Up Resistor



phpMyAdmin Create Table


