To assign php array to jquery variable use
var jArray= <?php echo json_encode($phpArray ); ?>;
jArray is the jquery variable which hold array in jquery and
$phpArray contains my php array ...
----------------------------------------------------------------------------------------------
For more details run below example:
<html>
<head>
</head>
<body>
<b> Hello .. Today we are assigning a php array to jquery variable <b>
<?php $phpArray = array(
0 => "Mon",
1 => "Tue",
2 => "Wed",
3 => "Thu",
4 => "Fri",
5 => "Sat",
6 => "Sun",
)?>
</body>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" >
$(document).ready(function(){
var jArray= <?php echo json_encode($phpArray ); ?>;
for(var i=0;i<6;i++){
alert(jArray[i]);
}
alert("Refresh again to see Array-Data ")
});
</script>
</html>
var jArray= <?php echo json_encode($phpArray ); ?>;
jArray is the jquery variable which hold array in jquery and
$phpArray contains my php array ...
----------------------------------------------------------------------------------------------
For more details run below example:
<html>
<head>
</head>
<body>
<b> Hello .. Today we are assigning a php array to jquery variable <b>
<?php $phpArray = array(
0 => "Mon",
1 => "Tue",
2 => "Wed",
3 => "Thu",
4 => "Fri",
5 => "Sat",
6 => "Sun",
)?>
</body>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript" >
$(document).ready(function(){
var jArray= <?php echo json_encode($phpArray ); ?>;
for(var i=0;i<6;i++){
alert(jArray[i]);
}
alert("Refresh again to see Array-Data ")
});
</script>
</html>
No comments:
Post a Comment