Category Archives: PHP

Live html compiler – PHP

Live HTML compiler using PHP is very simple one like as w3schools editor. In here we are going to run the textarea code in the iframe.Main difference from w3schools try editor,the w3schools try editor used asp.net but, here PHP with iframe is used.Visitors are need to edit their code for their own need, and they… Read More »

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

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

Browser Fullscreen API using Javascript

Usefull new Javascript API, very simple and useful fullscreen API using Javascript API. The full screen API is an easy way to get the full web content to be displayed on the page. Here the programmatic way to request fullscreen display from the user, and exit fullscreen when request from the user. When it comes… Read More »