How can I send Javascript results to MySql server?
for example
The navigator.language
property returns the browser language
<script type="text/javascript"> document.write(navigator.language); </script>
Gives us that value
ru
and how can I send to MySql as ru
not <script type="text/javascript">document.write(navigator.language);</script>