Help fix probel with meta description

hello,
I have this problem with my meta description my meta description have ’ mark within it and it effects it crawlers can’t read my meta description I don’t know how to remove the ’ mark or how to make it render correctly am selecting the description from my database
this is a screenshot

I hope the photo gives you a bitter idea it’s hard for me to explain the problem. and thanks

this is the code I am using

echo "<meta name='description' content='" . trim(substr(($row['game_info'])), 0, 177) . " | OvOnGames'>
<meta name='og:description' content='" . trim(substr(($row['game_info']), 0, 177)) . " | OvOnGames'>";

Good day!

As standard, you should use double quotes at HTML tag attribute value. Use this code instead:

echo '<meta name="description" content="'. trim(substr(($row['game_info'])), 0, 177) . ' | OvOnGames">
<meta name="og:description" content="' . trim(substr(($row['game_info']), 0, 177)) . ' | OvOnGames">';
1 Like