
Featured
-
Top 5 Features That Make Laravel the Best PHP Framework for Development
Laravel is a free open source Web Framework of PHP
by abhishek.tiwari.458 -
Best 5 Lightweight PHP Frameworks for REST APIs Development
Are you ready to develop the Rest AP
by ankur.kumar -
PHP: Full-Stack Framework vs Micro Framework
A web framework can be described as a software fra
by ankit.bhatia -
How to get facebook profile picture by Facebook App
If you would like to get your profile picture in f
by vivek.rastogi -
Creating RESTful API in cakephp
This tutorial will help you to learn how to create
by pushpendra.rawat
Tags
Database related functions in CakePHP
Database is used to collect information, which is organized in a proper way so that it can be accessed, managed and updated easily.
CakePHP supports following database servers:
MySQL 5.1+
SQLite 3
PostgreSQL 8+
SQLServer 2008+
...
Difference between mysql_connect() and mysql_pconnect()
Both mysql_connect() and mysql_pconnect() are used for database connection.
mysql_connect()
In mysql_connect() function opens and close the database connection, depending on the request. Every time a new connection is established, when usin...
How to insert data Value from a HTML form into MySQL Database
In this blog I am going to explain how to insert data from html form into mysql. We have three steps for completing this process.
Create HTML Form
Create MYSQL Database.
Mysql Database Connection and retrieve HTML for...