Browsing Category
Php
Create Simple Star Rating using Pure CSS with HTML Radio Button
In this post I am going share simple and quick code snippet to Create Simple Star Rating using Pure CSS with HTML Radio Button. The code written by jexordexan. You don’t need any third party jQuery plugin to create star rating system for…
PHP Function to Convert Seconds into Years, Months, Days, Hours, Minutes and Seconds.
In this post I am going to share quick PHP Function to Convert Seconds into Years, Months, Days, Hours, Minutes and Seconds. It’ll convert total number of seconds into human readable format Years, Months, Days, Hours, Minutes and Seconds…
How to add and subtract day, month, year in date through MySql Query
MySql offer two quick function to add and subtract date through MySql query, you can directly add or subtract day, month, year on any given date using your MySql query. In below example I’ll show you how to add/subtract x number of days,…
How to get full current page URL in PHP?
You can simply use PHP predefined variable $_SERVER to get the full current page URL in PHP. The $_SERVER is a superglobal variable in PHP, $_SERVER is an array containing information such as headers, paths, and script locations.
In…
Top 5 Free Dynamic PDF Generation Libraries in PHP
Top 5 Free Dynamic PDF Generation Libraries in PHP:-
Creating a dynamic PDF is the need of any project to fulfill your clients need, It helps in reporting section of your project. User can see all reports and also can download reports in…
How to parse URL and get URI segment in PHP
How to parse url and get URI segment in PHP
In this quick post I’ll will show you How to parse url and get URI segment in PHP, The URL segments are used for many purposes in the web based application. for parsing URL segment easily you can…
Simple auto suggest example using PHP, jquery and MySQL
Today i am going to show you the simplest method to add auto-suggest feature in you website using php, jquery and mysql.
Here my example is showing auto-suggest for country list.
Step-1: Create countries table in your database.…
How to Convert HTML to PDF in PHP with fpdf
HTML to PDF conversion is always a problem for PHP Programmers and all the time they search for suitable solutions so after reviewing this article you will not take more than 10 minutes to configure HTML to PDF, I have used a library fpdf …
How to Convert an array to XML using PHP
If you want to render php array output into XML then here I am going to share a wonderful PHP class to easily convert multidimensional array to XML. You can also use same for creating API’s to share your data with other’s in XML format. As…
How to Use Twitter API with PHP
Twitter is an information network and communication mechanism that produces more than 200 million tweets a day. The Twitter platform offers API’s to access their data. Each API represents a facet of Twitter, and allows developers to build…