Jump to content

Passing PHP variable to Javascript


Pig

Recommended Posts

Hi all

 

I am trying to pass a  php variable, we shall call $x to the JS array below.

 

<script type="text/javascript">

   var price = Array();
   var setup = Array();
   price['92342257765'] = '15';
   price['92342257734'] = '20';
   price['92342257778'] = '25';
   price['92342258706'] = '30';
   price['92342258732'] = '35';
   price['92342258700'] = '40';
   price['92342258745'] = '45';
   price['92342258736'] = '9';
   price['92342258697'] = 'xx'; //replace xx with $x php variable.

</script>

 

I am looking to replace the xx, with our $x php variable?

 

Anyone know how I can do this?

 

Thanks.

[code][code]

[/code][/code]

Link to comment
https://forums.phpfreaks.com/topic/172603-passing-php-variable-to-javascript/
Share on other sites

<script type="text/javascript">
   var price = Array();
   var setup = Array();
   price['92342257765'] = '15';
   price['92342257734'] = '20';
   price['92342257778'] = '25';
   price['92342258706'] = '30';
   price['92342258732'] = '35';
   price['92342258700'] = '40';
   price['92342258745'] = '45';
   price['92342258736'] = '9';
   price['92342258697'] = '<?php print $x; ?>'; //replace xx with $x php variable.
</script>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.