how can i replace red text in the code with the $test into phpscript in order to let it work?
$test='Ziekte';
?>
<script>
$(document).ready(function() {
$( "tr .scGridFieldOdd:contains('?'):contains('Ziekte')" ).css("background", "#FFFF00 " );
$( "tr .scGridFieldEven:contains('?'):contains('Ziekte')" ).css("background", "#FFFF00 " );
});
</script>
<?php