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?
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?