PHP – multiple files uploading dropzone js example

PHP - multiple files uploading dropzone js example

There is always a need to make multiple file or image uploading functions in a website or project. We use input with multiple image upload but it may not look great and the user may not like it. Image uploads are very common for all websites, whether you are working with PHP or any PHP … Read more

Categories PHP

PHP Interview Questions for Freshers 2023

PHP Interview Questions for Freshers

PHP stands for PHP Hypertext Pre-processor and is an open-source programming language that is widely used for creating a dynamic website and mobile APIs.  Following are the PHP interview questions. Q1.  How PHP is a case-sensitive language? PHP is partially case sensitive which refers to variable names that are case sensitive but function names are … Read more

Show PHP Errors

php display errors // Add these lines somewhere on top of your PHP file: ini_set(‘display_errors’, 1); ini_set(‘display_startup_errors’, 1); error_reporting(E_ALL); show php errors ini_set(‘display_errors’, 1); ini_set(‘display_startup_errors’, 1); error_reporting(E_ALL); How do I get PHP errors to display //PHP functions ini_set(‘display_errors’, 1); ini_set(‘display_startup_errors’, 1); error_reporting(E_ALL); //.htaccess php_flag display_startup_errors on php_flag display_errors on php_flag html_errors on php_flag log_errors on […]

Categories PHP

Convert youtube Link into embed code in PHP

Many times when you are going to add youtube video in your website application then need to convert links to embed code and then save in database because when you going to add with iframe it will block to save in database because of security purpose. So converting link into embed code and then show … Read more

Categories PHP