Thread moved to ClientSide Technologies forum (since this has nothing to do with PHP).
tobymac;10999358 wrote:I want a submit button that echoes out something below
What does "below" mean? Regardless, one method might be to create an empty <div> at the appropriate location, give it a unique ID, and then use something like:
onclick="document.getElementById('myDiv').innerHTML = 'something'"
on the <button>/<input>/? element (whatever your "submit button" is).