please check it for VUL for XXS . i had written the following code by muself and here is the html form please check it for VUL for XXS . thanks friends love u all god bless
Hello, Anytime you get data from get or post, you should always use strip_tags() to remove any rogue code passing in. This is one reason why people use frameworks, its done automatically. This is at a minimum! $link = strip_tags($_POST["link"]); $reason = strip_tags($_POST["reason"]); Code (markup):