Adding elements dynamically with JavaScript

In today's post we will create a program where user can add multiple items either form elements, images, div or any thing dynamically with JavaScript. This can be useful where you want to add multiple user's data, want to create questionnaire or multiple tasks items....Continue reading

Adding elements dynamically with JavaScript

Crop image with Marquee tool in Javascript

Generating thumbnails in your web service is important for proper look. Thumbnails can be created dynamically with PHP on the fly. All is that you need to to tell your PHP function the width, height, top and left measurements of the image you want to cropped from....Continue reading

Crop image with Marquee tool in Javascript

Creating thumbnails dynamically from images with PHP

Managing large gallerias or photo albums in dynamic web services needs thumbnails to be created on fly. In PHP there are built in functions which can create thumbnails at run time with given width but for more requirements like creating thumbnails with custom provided values for top, left and more supported image formats like png, gif we can use phpThumb....Continue reading

Creating thumbnails dynamically from images with PHP

How to create PDF file with PHP

There are some options available that creates PDF files with PHP functions. The simplest and the easiest method i choose and suggest is using MPDF53 library. With MPDF53 library you can easily generate PDF file from any HTML or PHP file with PHP which can contain images, styles sheet or inline styles....Continue reading

How to create PDF file with PHP

Backup SQL database with PHP

Dynamic websites mostly have SQL database where most of the data is fetched. If website is blog, portfolio, news or product type then database will be updated frequently in that case it is important to have backup of your database most frequently....Continue reading

Backup SQL database with PHP

Creating XML sitemap with PHP and SQL and submitting to search engines

Sitemap are important if you own a website and want search engines to index important URLs from your site fast to improve your SEO. Most famous search engines like Google and Bing when look at your website they look for sitemap nowadays in XML format.

Creating XML sitemap with PHP and SQL and submitting to search engines

Writing functions to insert, update, search, delete from SQL tables in PHP

Beginners who have started learning any programming language, some time find difficulties searching good material to start with. In today's post we will write some basic functions in PHP to insert, update, search and delete from SQL tables... Continue reading

Writing functions to insert, update, search, delete from SQL tables in PHP

Creating SEO friendly URLs with PHP and SQL

Creating custom URL or SEO friendly URLs are important if you have a dynamic website and want to get more exposure in search engine results.

Creating SEO friendly URLs with PHP and SQL