It looks like nothing was found at this location. Maybe try a search or browse one of our posts below.

XML parser normally parse all the text in an XML document.   Characters such as less than (<), greater than(>), ampersands(&) etc cause problems for the XML processor/parser.   “<” parser interprets it as the start of a new element. “&” parser interprets it as the start of an character entity. JavaScriptcode,contains a lot of…

PHP: What is the difference between split and explode php?
Difference between split and explode php Do you know what is the main difference between split() and explode()? No worries 🙂 , the main difference in split() and explode is the way, it uses to splitting a large string.   Both the functions are used to Split a string. However, Split is used to split a…

String Validation Validate name, surname by the below function to restrict only letters and spaces. Validate numeric value by the below function to restrict only numbers,you can uncomment any line according to your need. Alphanumeric Characters Validation Below function validates alphanumeric characters.ctype is complete function library in PHP. Validation for URL Exist or not This…