LIVE EXAMPLE's DEMOS BY Avimantra IT Academy

9.How to Extract All URLs from a Web Page using PHP ?

Extract URLs from the website is used in many cases, generating a sitemap from website URL is one of them. You can easily get all URLs from a web page using PHP. Here we'll provide short and simple code snippets to extract all URLs from a web page in PHP.

10.Add Remove input fields dynamically using jQuery With PHP ?

Sometimes we need to adding dynamic fields in a form. For fulfill those needs, we have created a script where you can add multiple fields and remove fields easily. This script is also very useful for add multiple values in PHP. In this tutorial we will discuss about generating input fields on the fly in a form and submitting the input field’s value into the database. We have used jQuery to make this functionality very short, simple and powerful. You can add dynamic fields and remove fields easily. Also you can get the fields value in your PHP script, once the form is submitted.

11.Disable mouse right click, cut, copy and paste using jQuery ?

Are you want to prevent visitors from copying your web page content? In this we'll show you how to stop content theft from your website using jQuery. For stopping the content copy of your website you can do two things, one is to disable the mouse right click and second is to disable the cut (CTRL+X), copy (CTRL+C) and paste (CTRL+V). Using of jQuery, you can easily disable mouse right click and disable cut, copy and paste from web content.

12.How to Export Data to CSV File using PHP and MySQL ?

CSV (comma-separated values) is the most popular file format to store tabular data in plain text.Generally,CSV file is used to import and export data for moving tabular data between programs.Import and export data is the most used feature in the web application,and CSV file format is a best chose for that.