Category Archives: PHP

An Introduction to SQL Data Types – PostgreSQL

Hi Friends, Everybody know that SQL is a structured Query Language is a computer language. It is used for storing, manipulating and retrieving data stored in relational databases. This article give you a basic idea about data types in PostgreSQL. SQL support standard language for relational database system. The all relational database management system like:… Read More »

CSS Zoom Effect on Image Hover

Hi all Today we will discuss one interesting topic related to CSS code for creating zoom effect on image hover. In image hover there are many ways are available to add special effect. We can adding a zoom effect using CSS3 transition on image when the user hover the image. The CSS3 transition also provide… Read More »

Image With Shadow – CSS

Hi friends, Today I share one important topic related to CSS effect. Here I describe image box shadow using CSS3. Shadow is a powerful properties in CSS. CSS3 box-shadow properties allows you to create single or multiple, inner or outer drop-shadows. We can use these properties our site our needs. We can set the style… Read More »

SQL Query Interview Questions with Answers

Hi all, Today I share one important topic related to SQL. SQL query is very important. This article mainly focus sql query related to interview questions and answer. In this article, I am giving some examples of SQL queries with answer which is frequently asked when you go for a programming interview. The main advantages… Read More »

mysql_close() function:PHP

To close an open MySQl connection in php, the mysql_close()helps to perform this function. The mysql_close() function is not the necessary part in our program. In non-persistent open links are automatically closed at the end of the script’s execution. Syntax mysql_close(connection) Example Output : connected successfully at:26/07/10 : 09:31:14 disconnected successfully at:26/07/10 : 09:31:15 If… Read More »

Fetch MYSQL table data – PHP

Welcome to all, Here we discuss one useful topic related to MYSQL,fetch the data from data base in MySQL using PHP. From the MYSQL database the data can be fetched by executing SQL SELECT statement through PHP function mysql_query. The mysqli_fetch_array() or mysql_fetch_array() function is most frequently option. This function returns row as an associative… Read More »