Part 6 Creation of the UPDATE to database

Continue from Insert, adding and else statement   else { //update $query = "UPDATE education SET Startyear ='$Startyearinput_esc', Endyear='$Endyearinput_esc', School='$Schoolinput_esc', Course='$Courseinput_esc', Qualification='$Qualificationinput_esc', member_Member_id='$memberId' WHERE Education_id='$Educationinput_esc'"; $queryResult = $db->writeQuery($query); if (!empty($queryResult)){…

Part 4 Creation of $_POST management

Process the submitted forms through PHP         if(!empty($_POST['spprofile'])) { //echo '', print_r($_POST, true), ''; $eduIDpost = $_POST['spprofile']['eduID']; $eduID = $_POST['spprofile']['eduID']; $Startyear = $_POST['spprofile']['Startyear']; $Endyear = $_POST['spprofile']['Endyear']; $School…

Part 2 Creation of Add Remove Button

The add and remove button is added in front of the table:   <p> <input type="button" class="btn btn-success" value="Add a New Education History" onClick="addRow('eduTable')" /> <input type="button" class="btn btn-warning" value="Remove…

Part 1 Creation of the form (HTML)

Prepare for two types of scenarios: When the form first open <tbody> <tr> <p> <td><input type="checkbox" required="required" name="chk[]" checked="checked" /> </td> <td> <label>Start Year</label> <input type="hidden" id="edu" style="width:100px" class="form-control" name="spprofile[eduID][]"…

code for session

  if(!empty($_SESSION)){ //echo '<pre>', print_r($_SESSION, true), '</pre>'; $memberId = $_SESSION['logged_in_Member_id']; if (isset($_SESSION['logged_in_Member_id'])){ $loggedin = "true"; } }

Php date format change

Task to translate 03-19-2015 into the format 19/03/2015 using Php     *be careful the m/d/Y not to be confused with d/m/Y     *be careful the / in the…

Setting up the email activation

Sign up page to verify user email address and create password upon sign up.     The system will utilize phpmailer for email delivery. https://github.com/PHPMailer/PHPMailer Simply download and unzip into…