php array to js
var arrNums = json_encode(<?php echo $arrNums; ?>);
php array to js
var arrNums = json_encode(<?php echo $arrNums; ?>);
assign php array into javascript
<script type="text/javascript">
$(document).ready(function() {
FACILITY_BOOKING.lst_festival_day = new Array();
<?php foreach($festival_day as $key => $val) { ?>
FACILITY_BOOKING.lst_festival_day.push('<?php echo $val; ?>');
<?php } ?>
});
</script>
assign array to variable php
$info = array('coffee', 'brown', 'caffeine');
// Listing all the variables
list($drink, $color, $power) = $info;
echo "$drink is $color and $power makes it special.\n";
// Listing some of them
list($drink, , $power) = $info;
echo "$drink has $power.\n";
// Or let's skip to only the third one
list( , , $power) = $info;
echo "I need $power!\n";
// list() doesn't work with strings
list($bar) = "abcde";
var_dump($bar); // NULL
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us