Category Archives: Web Development

CSS Button Style

Hi all, Here i share related to CSS button style. CSS helps different style and effect on HTML button.Create nice buttons that work purely using CSS, and that are cross-browser compatible. That means that they do not use images at all, and they should format nicely in almost any browser.Below I have given some button… Read More »

Center Image in div with overflow hidden

Here’s a simple CSS in HTML solution to have fullscreen backgrounds vertical and horizzontal centering respective image, image overflow hidden.Here you can center the image horizontally by adding a negative margin and left portion. If you want to you can also center the image vertically by adding a negative margin and top portion. CODE

Simple Textarea text Counter using AngularJS

This little and useful, textarea character counter using Javascript ang AngularJS. Here is one of the simple method use the textarea counter. This is useful to limited character field in forms.This demonstrates using AngularJS for a live character count input. The <html> element is the container of the AngularJS application ‘ng-app=”myappnote”‘ <html ng-app=”myappnote”> A <div>… Read More »

Bouncing Balls with CSS3 and HTML

Hi friends! Today we are going to see another great example of how to use the CSS3 and HTML in bouncing balls effects. Table of Content The HTML The CSS THE HTML Use very basic html concept. For bouncing ball we use two important div are used like ‘wrapper’ and ‘ball_wrapper’. The ‘wrapper’ is the… Read More »

Delete image in a folder and database Using PHP

Everybody know how to delete the content like datas and images from database using php code. But nobody try to delete the image from folder also. The following code will explain how to delete the data from database and folder using unlink command in php and wordpress page. <?php> $slot=$_GET[‘cat’]; $complete = $wpdb->get_results(“select * from… Read More »

Category: PHP

PHP-Basic

PHP: Hypertext Preprocessor, is a general-purpose scripting language that was originally designed for web development. This helps to produce dynamic web pages. It generally runs on a web server , can be embedded into HTM. Php scripting always starts with . and PHP scripting block can be placed anywhere in the document. Eg: My first… Read More »

Category: PHP

File Download Code In HTML

File downloading code is the method of downloading a file from folder or specified path using HTML or PHP code. How to download a file from folder,usually uploaded file are stored in the folder and how we can download it. Let see, using PHP code we going to download the file. Here I explain download… Read More »

Responsive CSS tab

A good design of tab system for accordions with responsive design. We can find many special effects made for html websites with the help of jquery and css. An interesting tab menu with added icons and text with additional styles and interest to the viewer. In desktop browser the tabs are display with icon and… Read More »

AJAX-Basic

AJAX is Asynchronous JavaScript and XML.It is based on Javascript and HTTP request. Ajax is not a new programming language. But a new way to use existing standards.The main function is updating parts of a web page, without reloading the whole page. AJAX uses asynchronous data transfer (HTTP requests) between the browser and the Web… Read More »