Example #1
0
<?php

session_start();
//include the DAL library to use the model layer methods
include '../class.DAL.php';
//creating object of DAL
$managedata = new ManageContent_DAL();
//getting values from edit account page
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
    $membership_id = $_POST['membership_id'];
    $ac_name = $_POST['ac_name'];
    $ac_no = $_POST['ac_no'];
    $bank = $_POST['bank'];
    $branch = $_POST['branch'];
    $ifsc = $_POST['ifsc_code'];
}
//fetching the id value of database
$table_id = $managedata->getValue_where("member_account_details", "id", "membership_id", $membership_id);
$id = $table_id[0]['id'];
//updating the selected values
if (isset($ac_name)) {
    $result = $managedata->updateValueWhere("member_account_details", "ac_name", $ac_name, "id", $id);
}
if (isset($ac_no)) {
    $result = $managedata->updateValueWhere("member_account_details", "ac_no", $ac_no, "id", $id);
}
if (isset($bank)) {
    $result = $managedata->updateValueWhere("member_account_details", "bank", $bank, "id", $id);
}
if (isset($branch)) {
    $result = $managedata->updateValueWhere("member_account_details", "branch", $branch, "id", $id);
Example #2
0
<?php

//include the DAL library to use the model layer methods
include '../class.DAL.php';
//creating object of DAL
$managedata = new ManageContent_DAL();
/*taking as constant value*/
$product_id = "P_003";
$membership_id = "member528c9e69f2d45";
$table_name1 = "mlm_info";
$table_name2 = "member_table";
$table_name3 = "product_table";
$table_name4 = "money_transfer_log";
$product_details = $managedata->getValue_where($table_name3, "*", "product_id", $product_id);
$discount = $product_details[0]['discount'];
$price_member = $product_details[0]['price_members'];
$distributed_amount = $price_member * $discount / 100;
echo $distributed_amount . "<br>";
//money calculation for buyer as member
$receiving_amount = $distributed_amount / 2;
echo $receiving_amount;
//money calculation for 1st parent member
$parent_id = $managedata->getValue_where($table_name1, "parent_id", "membership_id", $membership_id);
if (count($parent_id) > 0) {
    print_r($parent_id) . "<br>";
    $parent_membership_id = $managedata->getValue_where($table_name1, "membership_id", "id", $parent_id[0]['parent_id']);
    print_r($parent_membership_id) . "<br>";
    $amount_1st = $distributed_amount / 4;
    echo $amount_1st;
}
/*if($result0[0] == 1)
Example #3
0
<?php

session_start();
//include the DAL library to use the model layer methods
include '../class.DAL.php';
//creating object of DAL
$managedata = new ManageContent_DAL();
//getting values from change password page
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
    $password = $_POST['password'];
    $newPassword = $_POST['new_password'];
    $newPassword1 = $_POST['re_new_password'];
    $membership_id = $_POST['membership_id'];
}
if ($password != "" && isset($password) && isset($newPassword) && isset($newPassword1) && $newPassword != "" && $newPassword1 != "") {
    $password_db = $managedata->getValue_where('member_table', 'password', 'membership_id', $membership_id);
    if ($newPassword == $newPassword1) {
        if ($password == $password_db[0]['password']) {
            $rowCount = $managedata->updateValueWhere("member_table", "password", $newPassword, "membership_id", $membership_id);
            if ($rowCount == 1) {
                $_SESSION['result'] = "Password successfully changed";
            } else {
                $_SESSION['result'] = "Password change Failed";
            }
        } else {
            $_SESSION['result'] = "Wrong Password";
        }
    } else {
        $_SESSION['result'] = "New passwords don't match.";
    }
} else {
<?php

session_start();
//include the DAL library to use the model layer methods
include '../class.DAL.php';
//creating object of DAL
$managedata = new ManageContent_DAL();
//getting values from signup page
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
    $membership_id = $_POST['membership_id'];
    $name = $_POST['name'];
    $dob = $_POST['dob'];
    $gender = $_POST['gender'];
    $contact_no = $_POST['contact_no'];
    $address1 = $_POST['address1'];
    $address2 = $_POST['address2'];
    $city = $_POST['city'];
    $postal_code = $_POST['postal_code'];
    $state = $_POST['state_id'];
    $country = $_POST['country_id'];
}
//fetching the id value of database
$table_id = $managedata->getValue_where("member_table", "id", "membership_id", $membership_id);
$id = $table_id[0]['id'];
//making address field
$address = $address1 . "<br>" . $address2;
//updating the selected values
if (isset($name)) {
    $result = $managedata->updateValueWhere("member_table", "name", $name, "id", $id);
}
if (isset($dob)) {
Example #5
0
<?php

session_start();
//include the DAL library to use the model layer methods
include '../class.DAL.php';
//creating object of DAL
$managedata = new ManageContent_DAL();
//getting values from edit account page
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
    $membership_id = $_POST['membership_id'];
    $ac_name = $_POST['ac_name'];
    $ac_no = $_POST['ac_no'];
    $bank = $_POST['bank'];
    $branch = $_POST['branch'];
    $ifsc = $_POST['ifsc_code'];
}
if (isset($membership_id) && !empty($membership_id) && isset($ac_name) && !empty($ac_name) && isset($ac_no) && !empty($ac_no) && isset($bank) && !empty($bank) && isset($branch) && !empty($branch)) {
    $status = 1;
    $result = $managedata->insertAcDetails($membership_id, $ac_name, $ac_no, $bank, $branch, $ifsc, $status);
}
header("Location: ../../editProfile.php");
Example #6
0
<?php

session_start();
//include the DAL library to use the model layer methods
include '../class.DAL.php';
//creating object of DAL
$managedata = new ManageContent_DAL();
//include the mail class to send the mails to new sign up
include '../class.mail.php';
$mail = new Mail();
//getting values from withdrawal form
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
    $frozen_amount = $_POST['frozen'];
    $withdraw = $_POST['withdraw'];
    $membership_id = $_POST['membership_id'];
}
//initialize the total amount
$amount = 0;
$withdraw_amount = 0;
//checking for frozen money or not
if ($frozen_amount == 0) {
    //getting the debited amount from database
    $transactions = $managedata->getValue_twoCoditions("money_transfer_log", "*", "membership_id", $membership_id, "frozen_money", 0);
    //getting the amount debited to that member
    foreach ($transactions as $transaction) {
        //only debited values
        if (!empty($transaction['debit'])) {
            $amount = $amount + $transaction['debit'];
        }
    }
    //getting the withdrawal amount from database
Example #7
0
<?php

session_start();
//include the DAL library to use the model layer methods
include '../class.DAL.php';
//creating object of DAL
$managedata = new ManageContent_DAL();
//include the mail class to send the mails to new sign up
include '../class.mail.php';
$mail = new Mail();
//getting cookies value set
if ($GLOBALS['_COOKIE']['membership'] == 1) {
    $cookie = $GLOBALS['_COOKIE'];
    //checking the key word 'M_' for finding the selected product
    foreach ($cookie as $key => $value) {
        if (substr($key, 10, 2) == "M_") {
            //extracting the product id
            $membership_product_id = substr($key, 10);
        }
    }
}
//getting values from signup page
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
    $firstname = $_POST['f_name'];
    $lastname = $_POST['l_name'];
    $email_id = $_POST['email_id'];
    $dob = $_POST['dob'];
    $gender = $_POST['gender'];
    $contact_no = $_POST['contact_no'];
    $Senior_id = $_POST['Senior_id'];
    $address1 = $_POST['address1'];