I've been developing a quiz application. I'm facing a problem. When student giving test for Finish to English word meaning, they can easily get the English word using google translate. Is there any solution in PHP so that I can stop language translation of google crhome browser? Please help me.
Asked
Active
Viewed 643 times
1 Answers
0
Use html lang attribute
<html xml:lang="en" lang="en"></html>
and add before </head>
<meta name="google" content="notranslate"/>

Christian
- 3,917
- 2
- 23
- 40

Krishna Torque
- 623
- 1
- 7
- 17
-
Thanks for your answer. But unfortunately, its not working – Biplob Sarkar Oct 14 '15 at 19:15
-
Your meta tag was not displaying because of your formatting. This is fixed now. @BiplobSarkar you should try this again. – Christian Oct 15 '15 at 04:28