$('#categories_parent').change(function(){
var categories = $(this).val();
"<? json_encode($cat) = form::get_parent(?>"categories"<?) ?>";
ver cat = "<?=$cat?>";
alert(cat);
});
why i cant right php in java help me i tray json_encode and without json_encode not work
$('#categories_parent').change(function(){
var categories = $(this).val();
"<? json_encode($cat) = form::get_parent(?>"categories"<?) ?>";
ver cat = "<?=$cat?>";
alert(cat);
});
json_encode($cat) = form::get_parent('value')isn't even valid PHP. – Rocket Hazmat May 10 '12 at 22:01$catso that would be evaluated by the PHP engine and that would be in your JS as if it were plain text on page load. However, you may be wantingJSON.Stringify()which is a javascript function to create a JSON object. – Blake May 10 '12 at 22:02