Hello
I have set up [removed]
Firstly, am I using the right terms (checksum/hash etc) on the page?
I only have strip_tags() on the "blob" one. I havn't put it into the others. Which means if something like "> test is writen it ****s it up. I know i could sort it out by a simple strip_tags(), but then the user will think that the md5 version of it was done without any tags (if that makes sense). any ideas what to do?
Also are there any security issues server side, as basically all it does is:
$md = $_POST['md'];
$md = md5($md);
echo $md;
I know there are the client side issues as mentioned above.
Thanks
I have set up [removed]
Firstly, am I using the right terms (checksum/hash etc) on the page?
I only have strip_tags() on the "blob" one. I havn't put it into the others. Which means if something like "> test is writen it ****s it up. I know i could sort it out by a simple strip_tags(), but then the user will think that the md5 version of it was done without any tags (if that makes sense). any ideas what to do?
Also are there any security issues server side, as basically all it does is:
$md = $_POST['md'];
$md = md5($md);
echo $md;
I know there are the client side issues as mentioned above.
Thanks
Last edited: