Category: PHP

PHP array_udiff_assoc() Function

The array_udiff() function use a built-in function to compare the keys and values of two or more arrays, and returns the differences. Note: This function uses a built-in function to compare the keys, and a user-defined function to compare the values! Returns an array containing the entries from array1 that are not present in any […]

How to upload image without refresh page using Ajax and PHP

Are you looking for ajax file/image upload without refreshing page using ajax, Jquery and php. I had implemented this ajax form submitting using jquery.form plugin. You may also like How to Load Data From Database Without Page Refresh using Ajax, jQuery and PHP and How to Submit the Form Without Page Refresh using Ajax, jQuery and PHP. HTML […]

PHP hebrevc() Function

The hebrevc() function converts Hebrew text from a right-to-left flow to a left-to-right flow. It also converts new lines (\n) into. Tip: hebrevc() and hebrev() can convert Hebrew logical text (the Windows encoding) to Hebrew visual text. Hebrew visual requires no special right-to-left character support to be displayed properly, making it very useful for displaying […]

How to Create RSS Feed For Website using PHP

Nowadays, most website owners are sharing their site content using social media. So, many Facebook, Twitter, Google plus or other social media users are using the stream of their favorite social network to remain aware of website changes. Nevertheless, RSS remains the first choice for content syndication. You may also like How to create RSS Feed […]

PHP array_uintersect_assoc() Function

array_uintersect_assoc() Function used for Compare the keys and values of two arrays and return the matches. Note: This function uses a built-in function to compare the keys, and a user-defined function to compare the values! Returns an array containing the entries from array1 that are present in all of the other arrays Parameter Description array1 […]

PHP reset() Function

The reset() function rewinds array’s internal pointer to the first element and returns the value of the first array element, or FALSE if the array is empty. Returns the value of the first element in the array on success, or FALSE if the array is empty Parameter Description array Required. Specifies the array to use […]

PHP array_udiff_uassoc() Function

array_udiff_uassoc() Function used for Compare the keys and values of two arrays and return the differences. Note: This function uses two user-defined functions for comparison; the key is used in the first function and the value is used in the second! Returns an array containing the entries from array1 that are not present in any […]