Trying to test the # of users if javascript is turned on. I thought this trick would work, but forgot that the php executes either way.
<script>
<?php
$sql_insert = "INSERT IGNORE into `test_javascript` (`javascript`,`dateTime`) VALUES ('1',now())";
mysql_query($sql_insert,$link) or die("Insertion Failed:" . mysql_error());
?>
</script>
<noscript>
<?php
$sql_insert = "INSERT IGNORE into `test_javascript` (`javascript`,`dateTime`) VALUES ('0',now())";
mysql_query($sql_insert,$link) or die("Insertion Failed:" . mysql_error());
?>
</noscript>
Any ideas on how to fix this script or other ways to find % of users with javascript turned on.
60% of our users use IE, and a few of them (that we know of), don't have javascript enabled, so I'd like to get a better sense of the number of users without javascript.

<a onclick="<?php update_database(); ?>">or<noscript>alert("You must enable javascript!");</noscript>:) – Wesley Murch Apr 21 '11 at 14:44