Category Archives: Php & MySQL

PHP Tutorials : Rename a mysql table

If you want to rename a mysql table via php you just need an extremely simple query like the one it’s following: <?php //include db credentials mysql_query(“rename table TheOldName to TheNewName”); ?>

Posted in Php & MySQL | Tagged , , , , | Leave a comment

PHP Tutorial : Mysql Dump

Did you see this expression and doubt what it means? Mysql Dumps are files in different extensions/formats like .sql, .txt etc. which are used to store databases informations, table structures, mysql tables creations, table datas/entries and more. The mysql dumps … Continue reading

Posted in Php & MySQL | Tagged , , | Leave a comment

PHP Tutorial : Extracting rows from mysql

Helllooooooo, In latest two posts I have shown you how to connect to a mysql database via PHP, and in another one I teach you how to select rows from a mysql database table. In this one I will show … Continue reading

Posted in Php & MySQL | Tagged , , , , , , , , , | 2 Comments

PHP Tutorial : Building a MySQL query

In a recent tutorial I was showing you how to build a connection to MySQL database via PHP. In this one I will show you how to create a query to interogate a table of the database. Look below : … Continue reading

Posted in Php & MySQL | Tagged , , , , , , | 2 Comments

PHP Tutorial : Connecting to MySQL database via PHP

In this tutorial I will speak first time about php programming language and MySQL database engine togheter. I will show and explain how simple is to connect to a mysql server via php using a simple functio called mysql_connect(). mysql_connect(‘localhost’, … Continue reading

Posted in Php & MySQL | Tagged , , | 1 Comment