Skip to main content

Image Crop and Upload using jQuery and PHP

Image upload and Crop is an important feature of web applications to allow users to crop the image to desired size before upload. This feature is generally implemented in user’s section to manage user profile to upload user avatar or profile photo after image crop to fit correctly to display in user profile. The functionality can be implement any where with image upload in web applications

As in our previous tutorial you have learned how to upload images with jQuery, PHP and MySQL. In this tutorial you will learn how to crop image before upload using jQuery and PHP.

We will use Croppie jQuery plugin that enables to crop the image with zoom.

We will cover this tutorial step by step with live demp to browse ithe mage and display to crop with zoom feature and upload after image crop.

crop image and upload with php and jquery

(more…)

TinyMCE Upload Image with Ajax and PHP

In our previous tutorial, we have explained how to use TinyMCE editor to save content with Ajax, PHP and MySQL. In this tutorial, we will explain how to implement image upload in TinyMCE editor with Ajax and PHP.

TinyMCE is a well known WYSIWYG HTML Editor which extensively used in web applications to create HTML contents. It supports text formatting, table insert, link insert, image insert and more features.

TinyMCE has many plugins that allows insert image into editor through different sources. But it’s not allowed to browse image and upload to server to insert into editor. For this, we need to develop our own functionality.

So if you’re looking for solution for TinyMCE image upload to insert image into TinyMCE editor then here at the right place.

(more…)

Save TinyMCE Editor Content with PHP & MySQL

In our previous tutorial, we have explained how to develop Student Attendance System with PHP & MySQL. In this tutorial, we will explain how to use TinyMCE editor to replace textarea to save content with ajax, PHP and MySQL.

TinyMCE is the most advance JavaScript WYSIWYG HTML editor to create contents for websites. The editor can easily be integrated into any website to convert textarea to HTML editor to create HTML contents.

If you’re working on website and wants to replace normal textarea with advanced WYSIWYG HTML editor, then you’re here at the right place.

We will cover the tutorial in easy steps to integrate TinyMCE editor and save contents to MySQL database with ajax and PHP.

(more…)

Consuming RESTful Web Services using PHP

In our previous tutorial, we have explained how to Make Simple RESTful API with PHP. In this tutorial, we will explain how to consume RESTful API using PHP.

REST (Representational State Transfer) API has been getting popularity as it’s very simple and easy to use. The REST is stateless architecture that generally consists of clients, servers and HTTP operations known as request methods (GET, POST, PUT, DELETE).

Currently most of web applications are implemented with REST API as it’s best solution when the same data used by different applications. If you’re a PHP developer, you’re well aware about the importance of REST API when developing mobile applications.

So if you’re developing web application using REST API and looking for solution to consume RESTful web services, then you’re here at right place.

(more…)

Filter Search Result with Ajax, PHP & MySQL

In our previous tutorial, we have explained how to implement star rating system with Ajax, PHP & MySQL. In this tutorial, we will explain how to implement Filter Search Result with Ajax, PHP & MySQL.

Filter search result is a common feature of eCommerce website to provide relevant search result to user. The user can find the more relevant result from huge number of search records.

We will cover this tutorial step by step to implement live example with order data to search and filter search result with sorting order like Newest, Ascending, Descending, Processed order, Pending order, Cancelled order.

(more…)