How can I add symbol to this php code?

I am trying to add the special character ® to this code:

certificate_print_text($pdf, $x, $y + 105, 'C', 'Helvetica', '', 24, $course->fullname);

      

I want to introduce something like this: Dentokind® (dentokind is the name of the course)

I hope you can help me.

Thank you:)

+3


source to share


1 answer


As pointed out in the comments, the HTML is for the registered trademark symbol ®

, so your line of code should look something like this:



certificate_print_text($pdf, $x, $y + 105, 'C', 'Helvetica', '', 24, $course->fullname."®");

      

+1


source







All Articles