Working through a ‘register/login with verify’ script to make it work for my setup, and it does! Unfortunately, the email asking me to verify my form details doesn’t have a clickable link, just a url that I can copy/paste and get into the page.
The original line of code from the script reads:
$url = ‘http://’.$_SERVER[‘SERVER_NAME’].’/property7/register/verify.php?id=’.$lastId.’&token=’.$token;
And, following some instructions from another source, I change it to:
$url = ‘http://’.$_SERVER[‘SERVER_NAME’].’/property7/register/verify.php?id=’.$lastId.’&token=’.$token;
$url_components = parse_url($url);
parse_str($url_components[‘query’], $params);
But it gave the same result, image attached.
Can someone inform me as to what to do to get the link in the email to appear in link form so I can maybe turn it into a button?!