To retrieve data from a table of the database, we can use the mysql SELECT query. As discussed in the previous chapter, we use the mysql_query function to interactwith the database ( insert/retrieve data ). Although we’re now not going to INSERT data into the database but we’ll be using the SELECT type of query [...]
Continue reading...Tuesday, January 19, 2010
To insert data into the database, mysql queries are used. There are multiple types of mysql queries. The one to put data into the database is the INSERT query. This one inserts a new row into the database which requires the fields of a row for that table to be given a value to. A basic [...]
Continue reading...Tuesday, January 19, 2010
MySql can be used to interact with databases: insert and retrieve data. It can come very handy when you need to save a collection of the same ‘kind’ ( such as products or forum messages, user accounts, etc. ) and which need to be able to be edited easily. To interact with the database you [...]
Continue reading...
Tuesday, January 19, 2010
0 Comments