Category: Tutorial
Read, Parse and display CSV (Comma separated value) data using Jquery
In this tutorial, you can read the csv file content and display in a textarea with the help of Jquery. FileReader will fetch the contents from the csv file using the file upload. To get the csv data, you will …
Read, Parse and display CSV (Comma separated value) data using Jquery Read more »
Create RSS Feed Reader Using PHP and Jquery
In this tutorial, you can create simple RSS reader with help of PHP and Jquery. RSS reader will fetch the latest contents from the webpage using the feed url. To get the RSS (Rich Site Summary), you will need to …
jQuery Ajax Based Country, State and City List
In this tutorial, you can populate dynamic list of state and city with the help of jQuery and ajax. By default country drop down is displayed. When you will select country from the list, State drop down will be appeared …
jQuery – Add/Remove Dynamic Form Fields in PHP
In this tutorial, you can add/remove dynamic form fields with the help of javaScript/jQuery. We start with single Input row and a “Add Row” button to allow user to add more rows. When clicks on the “Add Row” button, one …
PHP – Login Attempts Limit
In this tutorial I am explaining how to restrict the login after 3 unsuccessful login attempts. After 3 unsuccessful login attempts the user will be banned for next 10 minutes. After the given time period the user can try login …
CSS3 – Create a Simple Tooltip
Tooltip is a great way to show more informations by simply hovering over an image or text. Created a simple CSS3 tooltip with help of HTML and CSS. In this tutorial I am going to show you how to create …
jQuery – Add/Delete Tags with jQuery Input Plugin
jQuery plugin converts a simple text input into a tag list with remove tag option. This plugin creates a input in your form that will contains a comma-separated list of tags. Simply call the tagsInput function on any field that …
jQuery – Add/Delete Tags with jQuery Input Plugin Read more »
jQuery – Create Simple Tabs using HTML, jQuery and CSS
Implemented simple jQuery tabs with HTML, jQuery and CSS. In this tutorial we will show you how to create simple jQuery tabs. jQuery tabs are a very nice way of showing lots of content into a very small space. On …
jQuery – Create Simple Tabs using HTML, jQuery and CSS Read more »
PHP – Import .sql File in mySQL Database
Implemented php script which is imported mysql file into the database. Copy and paste below php script into a file. Save this file. (Example – import.php). Replaced techguru_data.sql file name with your file name. Run import.php on the browser and …