Is there a way to convert input texts to its decimal ncr in php?
I am currently using the form method (<form> & <input>) to send text information to a php file.
But I would like to send these texts converted to ncr decimal.
For example, when I type "abc" in text input, I want it to be sent to php as
& #97 ;b ;c ;
The reason because post returns error when text contains quotas, question marks, smile faces ... etc.
Thanks
I am currently using the form method (<form> & <input>) to send text information to a php file.
But I would like to send these texts converted to ncr decimal.
For example, when I type "abc" in text input, I want it to be sent to php as
& #97 ;b ;c ;
The reason because post returns error when text contains quotas, question marks, smile faces ... etc.
Thanks