What is stdClass in PHP

What is stdClass in PHP

Stdclass is a generic empty class which is used to type case other type value to object. we can create anonymous PHP class. Using this feature we can create a new object with its own properties. In simple words: Stdclass is an alternative to associative array. To use this we don’t need to write a … Read more

Upload Image From URL in PHP

Upload Image From URL in PHP

In this tutorial we will see how to upload image from URL in PHP. It is very easy to upload image from url to server. In this example, you have to pass complete image path including image name and clicking on upload button will upload image to server. This is very simple explanation about upload … Read more

PHP Form Validation

PHP Form Validation

In this article we are going to see how to validate a HTML form using PHP. We have already written about how to validate form using jQuery. Server side form validation is used for additional security with client side validation. In this tutorial we will see how to use the HTML contact form on the … Read more

Dynamic Content Load Using jQuery and AJAX in PHP

Dynamic Content Load Using jQuery and AJAX in PHP

Dynamic content loading for web page is simple approach of loading page content by click on navigation menu link without page refresh. One of my blog readers requested me to write this tutorial. So, in this post we will discuss how to load dynamic content using jQuery and AJAX. Page content loads faster without refreshing … Read more