Filed in: Articles, CMS, Database, General Category, mysql, PHP, PHP Code, Simple CSS Code, Style & Scripts
Home » Posts tagged with "database"
Hi friends, in this post i would like to explain about Multi-language support for web application with MySql and PHP. I got many requests from users to multi-language using google translator is fine but the grammar is not properly established. So we can avoid and easily implement using mysql and php.
Multi-language support for web application with MySql...
Hello friends,
today i want to share some basic concepts but we need to know about import and export databases. If it is small database file, we can directly export or import from the phpmyadmin.
Process to export:
1) Go to phpmyadmin -> click on database -> there we have button called “export”.
2) When we click on that button, we...
Filed in: mysql
Hi friends,
I got the requirement to display the list of table names from the database using php code. I got the solution for it, once check the below code.
1) Connect to database:
mysql_connect(“dbserver”,”dbuser”,”dbpassword”);
2)Get the list of tables from table
$result = mysql_list_tables(“dbname”);
3)...
I want to share my views with you all on how to take backup of Database(mysql) using simple php code. , i recently worked on some project, due to some reasons i lost my database, then i think for is any code for taking backup of database, finally i got this code and now i am easily colloect the backup of database each day, when it is run in cron job.
The...




