SANITISE
Sanitise the input from a user for example so not to expose yourself to things like XSS.
Example
DEF content$=SANITISE("<script>alert('XSS')</script>")
PRINT content$
Output
<script>alert('XSS')</script>
Put down that phone!
Please view me on real computer.
Sanitise the input from a user for example so not to expose yourself to things like XSS.
DEF content$=SANITISE("<script>alert('XSS')</script>")
PRINT content$