I have basiclly everything working fine I have a page that dose all my work After it's done it sends you to a main page that dispalys the status of your request
update table blah blah...
$feedback = "Done";
header("location: main.php?feedback=$feedback");
this works fine I have
In one of my function it is to update the email address the same aplies but I want to dispaly a link to verify the new email
update table blah blah...
$feedback = "Done - <A herf\"main.php?verify=check\">click Here to Verify</A>";
header("location: main.php?feedback=$feedback");
everything passes but the link when I look at the source it half there.
i.e Done - <A herf\"main.php?verify
any body can shed some light
Thanks In Advance
RichieVC