B
ben
Guest
I don't
In HTML, you could do something like this.
<input type="text" id="noname" onblur="thefunctionIwant()" />
I don't want them to Post anything. Only when they take their focus off of the textarea. It's possible to do that with JavaScript but I need to use PHP to be able to do what Im planning to do...
And then in JavaScript..
var nonamevalue = document.getElementById("noname").value;
Is there a way to do the same JavaScript code above but using PHP?
Thank you so much!
Like, I DONT want them to have to press Submit...
I want "username" to be stored into a variable and then check if the MySQL database exists with that name..
In HTML, you could do something like this.
<input type="text" id="noname" onblur="thefunctionIwant()" />
I don't want them to Post anything. Only when they take their focus off of the textarea. It's possible to do that with JavaScript but I need to use PHP to be able to do what Im planning to do...
And then in JavaScript..
var nonamevalue = document.getElementById("noname").value;
Is there a way to do the same JavaScript code above but using PHP?
Thank you so much!
Like, I DONT want them to have to press Submit...
I want "username" to be stored into a variable and then check if the MySQL database exists with that name..