Could always pass it through a hidden form.

Bryan


-----Original Message-----
From: Bruce Levick [mailto:[EMAIL PROTECTED]] 
Sent: Sunday, January 05, 2003 1:09 AM
To: [EMAIL PROTECTED]
Subject: [PHP-DB] php variables to JS

Bruce Levick - VivamotionI am opening a chromless window with some JS
code.
I need to pass some variables which come from rows in my database into
the
jscript which will determine the size and URL of the window.

Before I go about drawing the info from the database I have set up some
hard
code php variables just so i could test how to pass these into js.

Does anybody know how I can code these variables into my jscript??

Cheers

##################################################
<?php
$h = 600;
$w = 343;
$theURL = test.php;
$wname = test;
?>
###################################################

##################################################
<script language="javaScript" type="text/javascript"
SRC="js/java.js"></SCRIPT>

<script>
<!--
function openIT() {
theURL="wesley.php"    //php variable here
wname ="CHROMELESSWIN"  //php variable here
W=300;  //php variable here
H=100;  //php variable here
windowCERRARa = "images/close_a.gif"
windowCERRARd = "images/close_d.gif"
windowCERRARo = "images/close_o.gif"
windowNONEgrf = "images/none.gif"
windowCLOCK = "images/clock.gif"
windowREALtit = "&nbsp;? Task title"
windowTIT = "<font face=verdana size=1>&nbsp;your chromless</font>"
windowBORDERCOLOR = "#000000"
windowBORDERCOLORsel = "#000000"
windowTITBGCOLOR = "#FF0033"
windowTITBGCOLORsel = "#FF0033"
openchromeless(theURL, wname, W, H, windowCERRARa, windowCERRARd,
windowCERRARo, windowNONEgrf, windowCLOCK, windowTIT, windowREALtit ,
windowBORDERCOLOR, windowBORDERCOLORsel, windowTITBGCOLOR,
windowTITBGCOLORsel)
}
//-->
</script>
##############################################################



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to