Posts

Upload html form data on server with php

Image
Upload html form data on server with php easily. Hello guys welcome to our blog. Today we disscus about the html form data to upload on server with very simple and easy method with the help of php's very short code. Lets start now! Guys i hope that all of you know to create a simple html form with input of name, adress, mobile number, etc but near about 80% beginner student don't know that how save these data which user input in the form field. We also know that about the form method which use in the form tag 'get' or 'post'. Here we use only post method to write costumer input on the server in txt file. For this complete action we must have a php file which url use in the action. First we have create a form in html. Simple code shown of a html below. <!DOCTYPE html> <head> </head> <body> <form method="post" action="submit.php" > <input type="text" name="name" value=...
Image
Today we go to learn first concept of html I know that html has most important thing is right tag Tag started with<tag> and the tag is close </tag> As-here we right a html heading wich h1 Amazon.in Widgets  <h1>and here are some element of Html</h1> Then we get output and here are some element of Html Because we tag h1 which mean heading h1 is a high font-weight type heading and the other heading tag is use h2,h3,h4,h5,h6 which are low font-weight type heading And we start writing document element in tag p which mean paragraph As:- <p font-style="italic">paragraph element</p> Then we get output Paragraph  element I use here font style so the output looking in this font. Example:- Then we get output We have to write the css ino style tag I use the css only for background color in the example. How add a moving element in html We use the marquee tag in html for moving e...