Author: Kalpesh Rajai

PHP Multiple Files Upload With Validation 4

PHP Multiple Files Upload With Validation

With PHP we can easily upload multiple files on the server. We have to use the same move_uploaded_file() function to upload the file. While uploading file we can also do the validation on the...

PHP File Uploading With Validation 1

PHP File Uploading With Validation

While uploading the file with the PHP we can perform the validation on the file, Like must be the image, file size must be the less than or maximum or limit the file size,...

PHP File Uploading 1

PHP File Uploading

With PHP, It is easy to upload the files on the server. For uploading the file on the server we have to use the HTML and PHP. Using HTML we can provide the user...

Mouse moving events: mouseenter and mouseleave 2

Mouse moving events: mouseenter and mouseleave

mouseenter/mouseleave events are same as the mouseover/mouseout events. mouseenter event trigger when the mouse pointer goes over to the element. mouseleave event trigger when the mouse pointer leave the the element. Difference between mouseenter/mouseleave...

Mouse moving events: mouseover and mouseout 2

Mouse moving events: mouseover and mouseout

mouseover: The mouseover events occurs when a mouse pointer comes over to the targeted element. mouseout: The mouseout events occurs when mouse pointer leave the targeted element. Both mouseover and mouseout event object have...