I did not know I needed a font file. The code is displayed now. Thank you.
The trouble is that I am not sure I understand the code I should put on top of my "thank you" page:
if (empty($POST['verify']) && $POST['verify'] == $_SESSION['captchstr']) {
do some error message
}
else {
do the rest
With this code, even if I write the correct captcha, there will be an error...?
Also I put this code on my "thank you" page:
echo ($POST['verify']);
echo ($SESSION['captchstr']);
But it does not print anything in the browser.