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
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>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.