Go Back   CodingForums.com > :: Client side development > JavaScript programming

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 11-08-2012, 09:59 AM   PM User | #1
kevinkhan
Regular Coder

 
Join Date: Jun 2009
Posts: 350
Thanks: 75
Thanked 0 Times in 0 Posts
kevinkhan is an unknown quantity at this point
simple php to javascript array question

Hi Guys.
If i have an php array

PHP Code:
Array
(
    [
0] => Array
        (
            [
venue] => Briar Rose
        
)


how do i get values from this array called venues into an array called source in this javascript code

Code:
 <script>
			  $(document).ready(function() {
				$("input#venue").autocomplete({
				source: ["c++", "java", "php", "coldfusion", "javascript", "asp", "ruby"]
				});
			  });
		  </script>
kevinkhan is offline   Reply With Quote
Old 11-08-2012, 01:46 PM   PM User | #2
rnd me
Senior Coder

 
rnd me's Avatar
 
Join Date: Jun 2007
Location: Urbana
Posts: 3,468
Thanks: 9
Thanked 466 Times in 450 Posts
rnd me is a jewel in the roughrnd me is a jewel in the roughrnd me is a jewel in the rough
Quote:
how do i get values from this array called venues into an array called source in this javascript code

Code:
<script> 
   var source = <?php echo json_encode( $venues );  ?> ;
</script>
__________________
my site (updated 5/13)
STATS (2013/5) HTML5:90.2% MOB:14% IE7:0.5% IE8:8.6% IE9:9.8% IE10:10%
rnd me is offline   Reply With Quote
Old 11-09-2012, 06:14 AM   PM User | #3
Dormilich
Senior Coder

 
Dormilich's Avatar
 
Join Date: Jan 2010
Location: Behind the Wall
Posts: 2,882
Thanks: 9
Thanked 291 Times in 287 Posts
Dormilich is on a distinguished road
Quote:
Originally Posted by kevinkhan View Post
Hi Guys.
how do i get values from this array called venues into an array called source in this javascript code
like rnd_me showed, only that in JS the inner array is not an array but a plain object.
__________________
please post your code wrapped in [CODE] [/CODE] tags
Dormilich is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 04:07 PM.


Advertisement
Log in to turn off these ads.