hi
i want my users to enter a web address as for example not
if they do enter http:// at the start how can i best remove it before sending the result to the database ?
thanks
I thought of doing something like
i want my users to enter a web address as for example not
if they do enter http:// at the start how can i best remove it before sending the result to the database ?
thanks
I thought of doing something like
Code:
left(str, 7)
if str = "[URL unfurl="true"]http://"[/URL] then
a = len(str)
replace str(str, mid(str,8,a-7))