FOLLOW ME ON :

Go to My Social Media Pages

Select an option:

resume maker

index.php

 <!DOCTYPE html>

<html>

<head></head>

    <meta charset="UTF-8" />

    <title>Project Resume</title>

<body>

<u>    <h1 style="text-align: center">RESUME</h1> </u>

<form method='post' action="resume.php">

    <label for="finame">FIRST Name:</label><input type="text" name="finame" placeholder="FIRST NAME" > <br>

<label for="lname">LAST Name:</label><input type="text" name="lname" placeholder="LAST NAME" > <br>

    <label for="cn">Contact Number:</label><input type="text" name="cn" placeholder="CONTACT NUMBER"> <br>

    <label for="img">Picture:</label><input type="file" name="img" > <br>

    <label for="birth">birthday:</label> <input type="date" name="birth" id=""> <br>

    <label for="fname">Father's Name:</label> <input type="text" name="fname"> <br>

    <label for="address">ADDRESS:</label> <input type="text" name="address"> <br>  

    <label for="email">EMAIL ID:</label> <input type="text" name="email"> <br>  

    <label for="nat">NATIONALITY:</label> <input type="text" name="nat"> <br>

    <label for="rel">RELIGION:</label> <input type="text" name="rel"> <br>

    <label for="ms">MARITAL STATUS</label> <input type="text" name="ms"> <br>

    <select name="gender" >

        <option value="">GENDER</option>

        <option value="male">MALE</option>

        <option value="female">FEMALE</option>

    </select> <br>

    <label for="lng">LANGUAGES KNOWN:</label> <input type="text" name="lng"> <br>

    <label for="aoi">AREA OF INTEREST:</label> <input type="text" name="aoi"> <br>

<label>ACADEMIC BACKGROUND:</label> <input type="text" name="ter" placeholder="TERTIARY"> <br>

<input type="text" name="sec" placeholder="SECONDARY"> <br>

<input type="text" name="pri" placeholder="PRIMARY"> <br>

    <label for="we">WORK EXPERIENCE:</label> <input type="text" name="we"> <br>

<input type="submit" name="ok" value='submit'> <br>

</form>


    

</body>

</html>






resume.php

<html>
<head>
   
    <title>Project Resume</title>
<u>    <h1 style="text-align: center">RESUME</h1> </u>

</head>
<body>
<h1>
<?php 
echo "<h1>". $finame = $_POST["finame"]. " " .$lname = $_POST["lname"] . "</h1> <br>" ; 
echo "CONTACT NO: ". $cn = $_POST["cn"]. '<br> <hr>';
echo '<h2> <u>PERSONAL DETAILS </h2> </u> ';
echo "DATE OF BIRTH: ". $birth = $_POST["birth"]. '<br>';
echo "FATHER'S NAME: ". $fname = $_POST["fname"]. '<br>';
echo "EMAIL ID: ". $em  = $_POST["email"]. '<br>';
echo "CONTACT NO: ". $cn = $_POST["cn"]. '<br>';
echo "NATIONALITY: ". $nat = $_POST["nat"]. '<br>';
echo "RELIGION: ". $rel = $_POST["rel"]. '<br>';
echo "MARITAL STATUS: ". $ms = $_POST["ms"]. '<br>';
echo "GENDER: ". $gender = $_POST["gender"]. '<br>';
echo "LANGUAGE KNOWN: ". $lng = $_POST["lng"]. '<br>';
echo "PERSONAL INTEREST: ". $P = $_POST["cn"]. '<br>';
echo "<hr> <h2>ACADEMIC BACKGROUND:</h2>" ;
echo  "<li>TERTIARY: ". $ter = $_POST["ter"]. ' </li><br>';
echo  "<li>SECONDARY: ". $sec = $_POST["sec"]. ' </li><br>';
echo  "<li>PRIMARY: ". $pri = $_POST["pri"]. ' </li><br>';
echo "<hr> <h2>WORK EXPERIENCE:</h2>" ;
echo $we= $_POST["we"];
?>
</body>
</html>

Comments

game