Hi Folks, I AM new in PHP World. How can i check the filled value in our PHP form befor posting it . Such as Text field is empty or not, Given date format is right or not. As we do using JAVASCRIPT. Thanks in Advance for ur coperation.
By using Javascript.
Your PHP is on the serverside, so the data has to be sent to the server (i.e. "posted" as you call it) before PHP can work on it.
EDIT: In fact, you should always perform serverside validation, whether or not you use JS.