Practical No.1 AIM: Write a PHP program to get the user from a form and show greeting text. PROGRAM: HTML FILENAME : Welcome.html <html> <head> <style type="text/css"> div {font-size:20pt;color:green;font-family:Jokerman;text-align:center;width:30%} P {font-size:18pt;color:darkblue;font-weight:bold;align:center;font-family:arial black} .double{border-style:double} .dashed{border-style:dashed} </style></head><body><center><br><br> <div class="double">GREETING TEXT</div><br> <div class="dashed"><form action="gre.php" method="post"> <p>Enter The Text:<br><input type="text" name="n"></p><br> <input type="submit" value=" SUBMIT "> <br> </div> </center> </form> </body>...
Comments
Post a Comment