Hi there, I'm trying to write in a database, a value passed by a JS

like:

<script language="JavaScript1.2" type="text/javascript">
h = screen.height;
</script>

Then I want to put it in SQL statement in a cfquery, how do I do it, I
tried:

<cfquery datasource="dsn">
    INSERT Into table(height)
    VALUES(h)
</cfquery>

don't work.
Then I tried:

<cfset height =<script>document.write(h);</script>

don't work either, what else can I do?
thanks
Vinicius

------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to