I\'d like to use any php function or whatever so that i can remove any HTML code and special characters and gives me only alpha-numeric output
$des = "He
to allow periods and any other character just add them like so:
change: '#[^a-zA-Z ]#' to:'#[^a-zA-Z .()!]#'
#[^a-zA-Z ]#
#[^a-zA-Z .()!]#