let's say I have a php page with a javascript script (script src...) can I use innerHTML to put additional php code in it? lets say
document.getElementsByTagName("body").innerHTML = "<?php $test=90312; echo $test; ?>";
will this get executed?
Thanks