Hi,
Is that possible to get only value (results) from javascript and write it to mysql database, coz with this I could get whole code to my database, but not results...
<?php
$testi = '<SCRIPT LANGUAGE="javascript">
document.write(""+screen.width+ "x" +screen.height+ "@" +screen.colorDepth+"bits")
</SCRIPT>';
mysql_connect("localhost","user","pw");
mysql_select_db("testi");
$insert_data="INSERT INTO testi (testi) VALUES ('$testi')";
mysql_query($insert_data);
?>