Blog
- Rexcel IT Services | Website Design and Development | IT Services > Blog > Core PHP Development
Categories
Recent Posts
- Website Designing and Development Company That Builds Your Digital Future
- OpenCart. Modification systems conflicts: OCMod vs vQmod
- Send Email with attachment on form submission in PHP
- Making simple authentication system using auth command in laravel
- WooCommerce: Add/display Product or Variation custom field everywhere

- January 24, 2026
- Email File Upload PHP
Send Email with attachment on form submission in PHP
For the web application, we mostly and frequently use web form. There are various type of web form used to get the user’s input like Contact, Registration, feedback. Contact or feedback form is used for online communication and submitted form data is sent via email instantly. You can easily send mail with attachment and form data using mail() function. In this blog, we are going to understand how to send email with attachment on form submission using PHP.

- September 28, 2025
- Core PHP Development
JSON with PHP
JSON stand for JavaScript Object Notation. It is a lightweight data-interchange format. It is easy for humans to read and write and also easy for machines to parse and generate. JSON is used to transmit information between a server and a browser. This is text, that can be convert to any JavaScript object into JSON and send JSON to the server. We can also convert any received JSON from the server into JavaScript objects. In this blog, we explain you how to encode and decode JSON using PHP.

- September 28, 2025
- Core PHP Development
PHP Exception Handling
To deal with errors, PHP 5 came with a new object oriented way for handling errors. It is named as Exception handling that is used to change the normal flow of the code execution if any specified error condition occurs. This condition is called an exception. In this blog, we will explain you about the PHP Exception Handling concept.

- September 28, 2025
- Core PHP Development
PHP 5 sessions and Cookies
The main difference between Php 5 Sessions and Cookies is that the session data is stored on the server, while cookie data is stored on the client server. Therefore, client can easily modified the cookie contents, but we will have to work way harder to modify the session contents.