PHP And React Nested Rating System With MySQL Database

Today, all store websites have a system where customers can enter their opinions on the website. This system not only improves the SEO of the website but can be used to ask the opinions, suggestions, and criticisms of the customers about the product. We discussed the comment system using PHP…

Continue Reading...

PHP React Nested Comment System With Reply

Today, all websites have a comment system, which is very important for blog websites. By using the comment system, users can register their opinions on the desired article or product on the website. In this article, we want to create and implement the comment system in PHP and React. Other…

Continue Reading...

PHP in_array()

The built-in PHP in_array() function is used to determine whether a value exists in an array or not.Depending on the search results, it gives a Boolean value (true or false). This PHP function search array to find the value in the array. If you want to know more about how…

Continue Reading...

PHP Date From String

PHP Date from String ( strtotime() function) is a powerful and versatile tool available in the PHP programming language. It allows developers to easily convert a string into a date object, and then manipulate it in various ways. This is an important feature for many web applications, as it allows…

Continue Reading...

PHP Image Rotation

PHP image rotation is one of the features of PHP that we can use the built-in imagerotate() function to rotate images according to the given angle. This function rotates the image from the center by the angle given in its parameter. Parameters: This function accepts four parameters as mentioned above…

Continue Reading...

PHP Resize Image

Sometimes we need to resize images on our website. For example, the size of the image is more than what we need. If your website is created with PHP, the resize image method will be helpful and can be done in two ways in PHP. One uses the Imagick class…

Continue Reading...
PHP String Contains

PHP String Contains (5 Methods)

In this PHP tutorial, we are going to check if a string is inside another string or not (find string in string). There are various functions and methods to check the string contains substrings in PHP, which we will discuss step by step in this tutorial. Why do we need…

Continue Reading...
php validation and sanitization

PHP Validation And Sanitization With Practical Example

One of the things that all websites should pay attention to is their security. One of the methods of hacking websites is SQL Injection and XSS. Websites created with PHP language are not excluded. To prevent these types of attacks, we must check the input data and the output data…

Continue Reading...