MySQL/phpMyAdmin

mySQL/phpMyAdmin - RSS Feed for this Section

Setting up a database connection can be a difficult task. Search Google and the scripts you will find will amaze you. These are lengthy and boring. Here is the easy most method to create a dbconnection for PHP and mysql.

{ read more }

Ever encountered with this WordPress MySQL error? MySQL Server Has Gone Away. And then your blog sidebars will refuse to show posts links, tags, recent posts, recent comments etc. I got this problem over and over again and I thought that I was using heavy plugins and MySQL query was timed out being very long. [...]

{ read more }

Did you wonder sometimes that why mySQL Update Command do not update records when the syntax of update query is perfectly alright? This is the problem I stuck with couple of times and I just wondered and looked for solution but seriously never found any solution to that anywhere untill I found the answer to [...]

{ read more }

by on October 5th, 2007

Learn how SQL Update Command works and update records, while working with PHP and mySQL.

{ read more }

by on October 5th, 2007

WHERE command is used to collect the records from the table based on some condition specified by the where clause. More than one condition can be added to the where clause by using various logical expressions like AND, OR, < ( less than ), >(greater than) etc. Logical expressions plays important role in returning the [...]

{ read more }

by on October 5th, 2007

Table structure can be changed by using alter command. With this command Field type or property can be changed or a new field can be added. If you decide to change a field to UNIQUE so it will not accept any duplicate records then if some records with duplicate value are already there then system [...]

{ read more }

mySQL is the world’s most popular open source database management system. mySQL is used to record data and to retrieve using PHP. mySQL and PHP communicate via queries and mySQL commands. Lets list these commands:

{ read more }

A primary key is used to uniquely identify each row in a table. It can either be part of the actual record itself, or it can be an artificial field (one that has nothing to do with the actual record). A primary key can consist of one or more fields on a table. When multiple [...]

{ read more }

by on July 8th, 2007

Not many developers know this but PHP originally stood for Personal Home Page. PHP (Hypertext Preprocessor) is an open source programming language. PHP is a widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML. I will share some of the best resources with you relating to the [...]

{ read more }