Hi. I want the all manipulations that can be done on mysql database by using query.Which manipulations can be done on mysql database? Please tell me. Thanks in advance.
There are too many to list but the basics are these. INSERT INTO - For adding a new entry UPDATE `table` SET var = '$var' - For updating a entry DELETE FROM `table` - For delete SELECT `colum` FROM `table` - Selecting data (* Wild Card) WHERE `var` = '$var' - This is something used within other querys for individuals HTML: They are the basics and you could make most normal scripts with just using that. I would post a link to some, but I cant yet