< br > and < p > are both very different in HTML Coding. < br > stands for "Line Break". If you were to insert that in your HTML, it would be like typing the Enter or Return key on your keyboard. This comes in handy a lot, and the avid web designer should use it frequently. < p > on the other hand, stands for "Paragraph." It is used to organize your HTML, so that it will be easy to edit it later on. Typing < p > says that you are starting a new paragraph, and typing < /p > says that you are ending one. Hope this helps!
-jjshammas P.S. Just so you know, take out the spaces in the HTML Codes listed above.
Chat with our AI personalities
One has an 'E' and one has a 'U'... simple ;P
x=5 based on the information above... the factor is: (x-5) and the root is: 5 :P XD LOL DX :) :( ;) ;( :o
X-term
coefficient
Better if you use javascript or another scripting language to analyse what is sent to the server in the first place. Most of the browsers support javascript.Suppose there is an input type of text of the simple html formName:Age : // The button below makes sure that client side validation is done otherwise it doesn't send data to servers // Here the "return checkData()" forces the client-side validation to occur before sending it to serverfunction checkData(){var char = /^[a-zA-Z]+$/;var num= /^[0-9]+$/;var name = document.getElementById("name");var age = document.getElementById("age");if(name.value==""name.value.match(num)){alert("Namespace cannot contain numericals!!");return false;}else if(age.value==""age.value.match(char)){alert("Age cannot be empty or contain characters!!");return false;}else{form1.form.submit();return true;}}// The neat little code tells if javascript is enabled/disabled in browserYour browser doesn't support javascriptMost of things would be easy this way but alas things aren't so easy. You also need to validate data on the server side using echo statements & control loops before finally posting data in mysql table