Is it possible to write in frames using PHP?

  • Thread starter Thread starter ben
  • Start date Start date
B

ben

Guest
How can I alert a user with a message in a frame using PHP? Like, with JavaScript you could something like...

function stuff() {
var usernameshown = document.getElementById('frame').value;
if (usernameshown == "hi") {
document.getElementById('frame').innerHTML = "hello to you, too";
}
}

Is there a way to do this using PHP?
 
Back
Top