Bootstrap Tab Virtual Asistant November 28, 2017Bootstrap JS Tab JS Tab (tab.js) Tabs are used to separate content into different panes where each pane is viewable one at a time. For a tu... Read more
MySQL Database Virtual Asistant November 27, 2017PHP MySQL Database With PHP, you can connect to and manipulate databases. MySQL is the most popular database system used with PHP. What is ... Read more
MySQL Connect Virtual Asistant November 27, 2017PHP Connect to MySQL PHP 5 and later can work with a MySQL database using: MySQLi extension (the "i" stands for improved) PDO (PH... Read more
MySQL Create DB Virtual Asistant November 27, 2017PHP Create a MySQL Database A database consists of one or more tables. You will need special CREATE privileges to create or to delete a MySQ... Read more
MySQL Create Tables Virtual Asistant November 27, 2017PHP Create MySQL Tables A database table has its own unique name and consists of columns and rows. Create a MySQL Table Using MySQLi and PD... Read more
MySQL Insert Data Virtual Asistant November 27, 2017PHP Insert Data Into MySQL Insert Data Into MySQL Using MySQLi and PDO After a database and a table have been created, we can start adding d... Read more
MySQL Insert Multiple Virtual Asistant November 27, 2017PHP Insert Multiple Records Into MySQL Insert Multiple Records Into MySQL Using MySQLi and PDO Multiple SQL statements must be executed with... Read more
MySQL Prepared Virtual Asistant November 27, 2017PHP Prepared Statements Prepared statements are very useful against SQL injections. Prepared Statements and Bound Parameters A prepared stat... Read more
MySQL Select Data Virtual Asistant November 27, 2017PHP Select Data From MySQL Select Data From a MySQL Database The SELECT statement is used to select data from one or more tables: SELECT col... Read more
MySQL Delete Data Virtual Asistant November 27, 2017PHP Delete Data From MySQL Delete Data From a MySQL Table Using MySQLi and PDO The DELETE statement is used to delete records from a table: ... Read more
MySQL Update Data Virtual Asistant November 27, 2017PHP Update Data in MySQL Update Data In a MySQL Table Using MySQLi and PDO The UPDATE statement is used to update existing records in a tabl... Read more
MySQL Limit Data Virtual Asistant November 27, 2017PHP Limit Data Selections From MySQL Limit Data Selections From a MySQL Database MySQL provides a LIMIT clause that is used to specify the n... Read more