Echo in echo [duplicate]

No need of that tag again. Simply concatenate the variable –

echo '<input type="hidden" id="'.$row["id"].'" value="' . $cats . '">'

Update

With jQuery

var response = "The response after ajax request";
$('input[type="hidden"]').val(response); // Selector will depend on your code

Leave a Comment