Showing posts with label input. Show all posts
Showing posts with label input. Show all posts

Sunday, 30 March 2014

PHP TUTORIALS-POST METHOD

PHP TUTORIALS SESSION 3 POST METHOD WITH EXAMPLE PROGRAM 



HTML Program Name:- htmlpost1.html

<html>

<head>

<body>

<h1><center>Post Method</center></h1>

<form action="post1.php" method="post">

Name:<input type="text" name="name">

Email:<input type="text" name="email">

<input type="submit" value="Submit">

</form>

</body>

</head>

</html>


PHP Program Name:- post1.php


Welcome <?php echo $_POST["name"];?>

Your email id is:<?php echo $_POST["email"]; ?>


JAVA PROGRAMS-Hierarchical Inheritance in Java

Hierarchical Inheritance in Java

Program Name:- hiear.java

import java.io.*;
class vehicle
{
String regno;
int model;
 vehicle(String r,int m)
 {
 regno=r;
 model=m;
 }
 void display2()
 {
 System.out.print("\nRegistration number\t:"+regno);
 System.out.print("\nModel\t\t\t:"+model);
 }
}
class roadvehicle extends vehicle
{
int noof;
 roadvehicle(String r,int m,int n)
 {
 super(r,m);
 noof=n;
 }
 void display()
 {
 System.out.print("\n\n\t Road Vehicle\n\n");
 super.display2();
 System.out.print("\nNumber of wheel\t:"+noof);
 }
}
class watervehicle extends vehicle
{
int nn;
 watervehicle(String s,int m,int n)
 {
 super(s,m);
 nn=n;
 }
 void display1()
 {
 System.out.print("\n\n\t Water Vehicle\n\n");
 super.display2();
 System.out.print("\nNumber of leaf\t:"+nn);
 }
}
public class hiear
{
 public static void main(String[]args)
 {
 roadvehicle r;
 watervehicle w;
 r=new roadvehicle("TN 58 s 5482",2011,2);
 w=new watervehicle("TN  57 A 5828",2011,10);
 r.display();
 w.display1();
 }
}