PHP MySQL Database Connection

PHP 5 and later can work with a MySQL database using: MySQLi extension (the “i” stands for improved) PDO (PHP

Read more

Backup and Restore Mysql database table

Dump and restore from .sql Dump mysqldump db_name table_name > table_name.sql Restore mysql -u <user_name> -p db_name mysql> source <full_path>/table_name.sql

Read more

No route to host (113)

In host machine iptables is running and is blocking the port 5901. Kill all the vncserver desktop in the host machine

Read more

saving data into custom cdr field – add new filed in cdr

I created custom field “rec_name” id table “cdr”, database “asteriskcdrdb”. In this field I want to store recording name. I

Read more

Create your own search engine with PHP and MySQL

Database Matter The first step is to open up phpMyAdmin or a database software and incorporate the below query into

Read more

Insert Data From a Form Into a Database

Now we will create an HTML form that can be used to add new records to the “Persons” table. Here

Read more