当前位置: 首页>>代码示例>>PHP>>正文


PHP createRandomPassword函数代码示例

本文整理汇总了PHP中createRandomPassword函数的典型用法代码示例。如果您正苦于以下问题:PHP createRandomPassword函数的具体用法?PHP createRandomPassword怎么用?PHP createRandomPassword使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了createRandomPassword函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: insert_coder

function insert_coder()
{
    if ($_POST['coderpass'] != $_POST['coderpass2']) {
        die('error:  The coder passwords do not match!');
    }
    $username = $_POST['coderuser'];
    $usermail = $_POST['codermail'];
    $secret = mksecret();
    $wantpasshash = md5($secret . $_POST['coderpass'] . $secret);
    $editsecret = mksecret();
    $ret = mysql_query("INSERT INTO users (username, class, passhash, secret, editsecret, email, status, added) VALUES (" . implode(",", array_map("sqlesc", array($username, 8, $wantpasshash, $secret, $editsecret, $usermail, 'confirmed'))) . ",'" . get_date_time() . "')");
    $rndpasshash = createRandomPassword();
    $rndsecret = createRandomPassword();
    $rndeditsecret = createRandomPassword();
    $rex = mysql_query("INSERT INTO users (id, username, class, passhash, secret, editsecret, email, status, added) VALUES (" . implode(",", array_map("sqlesc", array(2, 'System', 1, $rndpasshash, $rndsecret, $rndeditsecret, 'System@ilovebender.com', 'confirmed'))) . ",'" . get_date_time() . "')");
}
开发者ID:ZenoX2012,项目名称:CyBerFuN-CoDeX,代码行数:16,代码来源:functions.php

示例2: createUser

function createUser($profile, $groups)
{
    global $modx;
    $username = createUniqueUsername((string) $profile->preferredUsername);
    $user_fields = array('username' => $modx->db->escape($username), 'password' => createRandomPassword());
    $user_attribute_fields = array('fullname' => $modx->db->escape((string) $profile->displayName), 'email' => $modx->db->escape((string) $profile->verifiedEmail), 'country' => isset($profile->address) ? $profile->address->country->text : '');
    $key = $modx->db->insert($user_fields, $modx->getFullTableName('web_users'));
    $user_attribute_fields['internalKey'] = $key;
    $modx->db->insert($user_attribute_fields, $modx->getFullTableName('web_user_attributes'));
    // add user to web groups
    if (count($groups) > 0) {
        $results = $modx->db->makeArray($modx->db->select('id', $modx->getFullTableName("webgroup_names"), "name IN ('" . implode("','", $groups) . "')"));
        foreach ($results as $fields) {
            $modx->db->insert(array('webgroup' => $fields['id'], 'webuser' => $key), $modx->getFullTableName("web_groups"));
        }
    }
    return $key;
}
开发者ID:brettflorio,项目名称:rpxnow-modx,代码行数:18,代码来源:AuthRPX.snippet.php

示例3: createRandomPassword

    }



    return $pass;



}



// Usage

$password = createRandomPassword();

echo "Your random password is: $password <br />";




$q = Doctrine_Query::create()
                ->select("d.*, l.*, c.*, p.*, partido.*")
                ->from("Domicilio d, d.Localidad l, d.Calle c, d.Provincia p, d.PartidoDepto partido")
                ->where("d.ente_id = ?", "32135988")
                ->orderBy("d.id DESC");

$domicilioAnterior = $q->execute()->get(1);
if($domicilioAnterior->exists())
        echo "existe";
开发者ID:nahue,项目名称:Siefu,代码行数:30,代码来源:test.php

示例4: curl_post_contents

                $fields['debug'] = 'on';
                $fields['query'] = $querystring;
                //				print("<!--$querystring-->\n");
                $rdf = curl_post_contents($server_import, $fields);
                //				print("<!--$rdf-->\n");
                if (preg_match_all('/<rdf:Description.*?rdf:Description>/', $rdf, $matches)) {
                    foreach ($matches[0] as $line) {
                        $strOutput .= "\n{$line}";
                    }
                }
            }
        }
        if (empty($fileNames) && sizeof($str_inputs2) == 1) {
            $fileName = $finalFile;
        } else {
            $fileName = createRandomPassword();
        }
        $tmpOutputURI = "http://ontofox.hegroup.org/{$fileName}.owl";
        if (empty($fileNames) && $outputURI != '' && sizeof($str_inputs2) == 1) {
            $tmpOutputURI = $outputURI;
        }
        $strOutput .= "\r\n\t\t<owl:Ontology rdf:about=\"{$tmpOutputURI}\"/>\r\n\t\t</rdf:RDF>";
        foreach ($outputNSs as $NSTmp => $prefixTmp) {
            $strOutput = "\r\n\t\txmlns:{$prefixTmp}=\"{$NSTmp}\"" . $strOutput;
        }
        $strOutput = '<?xml version="1.0" encoding="utf-8" ?>
<rdf:RDF
' . $strOutput;
        //		$strOutput = preg_replace('/rdf:nodeID="/', 'rdf:nodeID="b', $strOutput);
        file_put_contents("{$userfiles}/{$fileName}.in.owl", $strOutput);
        $json_settings = array();
开发者ID:OntoZoo,项目名称:ontofox,代码行数:31,代码来源:getExternal.php

示例5: createRandomPassword

        $i++;
    }
    return $pass;
}
$Categoryname = $_POST['categoryname'];
$Roomid = $_POST['roomid'];
$arrival = $_POST['start'];
$departure = $_POST['end'];
$numberofdays = $_POST['numberofdays'];
$status = 'Pending';
$addonpayable = 0;
$downpayment = 0;
$total = $_POST['total'];
$adult = $_POST['nadult'];
$child = $_POST['nchild'];
$confirmation = 'wv-' . createRandomPassword();
if ($adult == '' || $child == '') {
    echo "please select the number of Adult or Child";
} else {
    if (isset($_SESSION['Customerid'])) {
        $Customerid = $_SESSION['Customerid'];
        $sql = "select * from tblusers where Customer_ID='{$Customerid}'";
        $query = mysqli_query($conn, $sql);
        $row = mysqli_fetch_assoc($query);
        $fname = $row['FirstName'];
        $lname = $row['LastName'];
        $balance = 90000;
        $datenow = date('Y-m-d');
        $Reservation = new Reservation($Customerid, $Categoryname, $Roomid, $arrival, $departure, $numberofdays, $adult, $child, $status, $addonpayable, $downpayment, $total, $confirmation, null);
        if ($Reservation->AddReserve()) {
            $transaction = new Transaction($Customerid, $datenow, null, null, $total, $status, 'None');
开发者ID:phoenixtwister,项目名称:WestViewPensionne,代码行数:31,代码来源:Reserve.php

示例6: mysql_exec

 $_POST['package_id'] = (int) @$_POST['package_id'];
 if ($u_id > 0) {
     #/ users
     $sql_users = "UPDATE users SET package_id='{$_POST['package_id']}', email_add='{$_POST['email_add']}',\n            screen_name='{$_POST['screen_name']}', first_name='{$_POST['first_name']}', middle_name='{$_POST['middle_name']}', last_name='{$_POST['last_name']}',\n            company_name='{$_POST['company_name']}', account_activated='{$account_activated}', is_blocked='{$is_blocked}'\n            WHERE id='{$u_id}'";
     mysql_exec($sql_users, 'save');
     #/ user_info
     $sql_user_info = "UPDATE user_info SET country_code='{$_POST['country_code']}', state='{$_POST['state']}',\n            city='{$_POST['city']}', address_ln_1='{$_POST['address_ln_1']}', address_ln_2='{$_POST['address_ln_2']}',\n        \tzip='{$_POST['zip']}', phone_number='{$_POST['phone_number']}'\n            WHERE user_id='{$u_id}'";
     mysql_exec($sql_user_info, 'save');
     $_SESSION["CUSA_ADMIN_MSG_GLOBAL"] = array(true, 'The User data was successfully Updated..');
     //redirect_me("{$consts['DOC_ROOT_ADMIN']}admin_users_opp.php{$param2}&u_id={$u_id}", true);
     ////////////////-------
 } else {
     ////////////////-------
     #/ encrypt password
     include_once '../../includes/func_enc.php';
     $new_pass = (string) createRandomPassword();
     $pass_w = md5_encrypt($new_pass);
     ###/ Updating Database
     #/ users
     $sql_users = "INSERT INTO users\n        \t(package_id, email_add, pass_w, screen_name, first_name, middle_name, last_name, company_name, account_activated, is_blocked, joined_on)\n        \tvalues('{$_POST['package_id']}', '{$_POST['email_add']}', '{$pass_w}', '{$_POST['screen_name']}', '{$_POST['first_name']}', '{$_POST['middle_name']}', '{$_POST['last_name']}', '{$_POST['company_name']}', '{$account_activated}', '{$is_blocked}', NOW())";
     mysql_exec($sql_users, 'save');
     $u_id = (int) @mysql_insert_id();
     #-
     if ($u_id > 0) {
         #/ user_info
         $sql_user_info = "INSERT INTO user_info\n            \t(user_id, country_code, state, city, address_ln_1, address_ln_2, zip, phone_number)\n            \tvalues('{$u_id}', '{$_POST['country_code']}', '{$_POST['state']}', '{$_POST['city']}', '{$_POST['address_ln_1']}', '{$_POST['address_ln_2']}', '{$_POST['zip']}', '{$_POST['phone_number']}')";
         mysql_exec($sql_user_info, 'save');
         #/acc_verifications
         $verification_str = mt_rand() . md5(uniqid(rand())) . mt_rand();
         $sql_veri = "INSERT INTO acc_verifications (user_id, verification_str)\n                VALUES ('{$u_id}', '{$verification_str}')";
         @mysql_exec($sql_veri, 'save');
开发者ID:centaurustech,项目名称:collaborate-usa,代码行数:31,代码来源:users_opp.php

示例7: cleanInput

     $last_name = cleanInput($fb_fetch['last_name']);
     $is_admin = intval($fb_fetch['is_admin']);
     try {
         $fb_update = "UPDATE `members` SET `access` = :access_date, `fb_id` = :temp_fb_id WHERE `id` = :userid";
         $fb_update_do = $db->prepare($fb_update);
         $fb_update_do->bindParam(':access_date', $access_date, PDO::PARAM_STR);
         $fb_update_do->bindParam(':temp_fb_id', $temp_fb_id, PDO::PARAM_INT);
         $fb_update_do->bindParam(':userid', $userid, PDO::PARAM_INT);
         $fb_update_do->execute();
     } catch (PDOException $e) {
         /* catch and log errors over here. */
     }
 } else {
     /* creating a random key for the user */
     $temp_key = getGuid();
     $temp_password = createRandomPassword();
     $temp_password = generate_encrypted_password($temp_password);
     /* fetching the user's first and last name from their facebook profile. */
     $first_name = $user->first_name;
     $last_name = $user->last_name;
     try {
         $fb_insert = "INSERT INTO `members`(`first_name`, `last_name`, `password`, `email`, `key`, `verified`, `join`, `access`, `fb_id`) VALUE(:first_name, :last_name, :temp_password, :fb_email, :temp_key, 1, :access_date, :access_date, :temp_fb_id)";
         $fb_insert_do = $db->prepare($fb_insert);
         $fb_insert_do->bindParam(':first_name', $first_name, PDO::PARAM_STR);
         $fb_insert_do->bindParam(':last_name', $last_name, PDO::PARAM_STR);
         $fb_insert_do->bindParam(':temp_password', $temp_password, PDO::PARAM_STR);
         $fb_insert_do->bindParam(':fb_email', $fb_email, PDO::PARAM_STR);
         $fb_insert_do->bindParam(':temp_key', $temp_key, PDO::PARAM_STR);
         $fb_insert_do->bindParam(':access_date', $access_date, PDO::PARAM_STR);
         $fb_insert_do->bindParam(':temp_fb_id', $temp_fb_id, PDO::PARAM_INT);
         $fb_insert_do->execute();
开发者ID:Abysmal,项目名称:AuthManager,代码行数:31,代码来源:session.inc.php

示例8: array

             $show_form = false;
         }
         #/ Check if account is blocked
         if ($qa_res['is_blocked'] == 1) {
             $fv_errors[] = array("Your Account has <b>BLOCKED</b> by the Admin! Consequently, you will NOT be able to Access your Account.");
             $show_form = false;
         }
     }
 }
 #-
 if (!is_array($fv_errors) || empty($fv_errors) || count($fv_errors) <= 0) {
     $user_info = $qa_res;
     if (is_array($user_info) && array_key_exists('email_add', $user_info)) {
         #/ create & encrypt temp password
         include_once '../includes/func_enc.php';
         $new_pass = @createRandomPassword();
         $pass_w = @md5_encrypt($new_pass);
         #/save users
         $sql_users = "UPDATE users SET pass_w='{$pass_w}'\n            WHERE email_add='{$user_info['email_add']}' AND id='{$user_info['user_id']}'";
         @mysql_exec($sql_users, 'save');
         #/ Send Emails to User
         include_once '../includes/email_templates.php';
         include_once '../includes/send_mail.php';
         $subject = $heading = "Account Access Recovery from collaborateUSA.com";
         $body_in = account_recover_access($user_info, $new_pass);
         send_mail($_POST['email_add'], $subject, $heading, $body_in);
         #/ Redirect
         reset_attempt_counts();
         redirect_me($seo_tag . '/success');
     } else {
         $_SESSION["CUSA_MSG_GLOBAL"] = array(false, 'Unable to process your request at this moment! Please try again later.');
开发者ID:centaurustech,项目名称:collaborate-usa,代码行数:31,代码来源:recover_password.php

示例9: switch

     } else {
         $civi = "MM";
     }
     switch ($prof[$cpt]["civilite"]) {
         case 1:
             $civi = "M.";
             break;
         case 2:
             $civi = "MM";
             break;
         case 3:
             $civi = "ML";
             break;
     }
     if ($_POST['mdp'] == "alea") {
         $mdp = createRandomPassword();
     } else {
         $date = str_replace("-", "", $prof[$cpt]["date_naissance"]);
         $mdp = $date;
     }
     //echo $prof[$cpt]["nom_usage"].";".$prof[$cpt]["prenom"].";".$civi.";"."P".$prof[$cpt]["id"].";"."ENS".";".$date."<br />\n";
     $chaine = $prof[$cpt]["nom_usage"] . ";" . $prof[$cpt]["prenom"] . ";" . $civi . ";" . "P" . $prof[$cpt]["id"] . ";" . "ENS" . ";" . $mdp;
     if ($fich) {
         fwrite($fich, html_entity_decode($chaine) . "\n");
     }
     if ($_POST['mdp'] == "alea") {
         fwrite($fich2, "<tr>\n<td>" . $prof[$cpt]["nom_usage"] . "</td>\n<td>" . $prof[$cpt]["prenom"] . "</td>\n<td>{$civi}</td>\n<td>{$mdp}</td>\n</tr>\n");
     }
     echo $chaine . "<br />\n";
 }
 $cpt++;
开发者ID:rhertzog,项目名称:lcs,代码行数:31,代码来源:lecture_xml_sts_emp.php

示例10: curl_setopt

curl_setopt($ch, CURLOPT_URL, $serverUrl);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_USERAGENT, 'Ringside API PHP5 Client 1.1 (curl) ' . phpversion());
$result = curl_exec($ch);
$errno = curl_errno($ch);
curl_close($ch);
if ($errno == 0) {
    writeLine(" API server was located and responds. {$serverUrl} ");
} else {
    writeError(" API server failed to respond (Error {$errno}).  Validate the server url : {$serverUrl} ");
    writeLink("drop.php", "Drop Schema, Start Again");
    return;
}
echo "<hr />";
writeLine("<h1>Step 5: Setting up initial data.</h1>");
$adminPassword = createRandomPassword();
$result = loadBasicData('ringside', $adminPassword, $database);
if ($result == true) {
    writeLine(" Basic setup information and some sample data was written to the database.");
    //   writeLine( " Admin user name is <b>admin</b> and password is <b>$adminPassword</b>" );
    writeLine(" The following example users were created as well, all with password <b>ringside</b>");
    echo "<table cellpadding='4' width='80%'> ";
    writeRow('joe@goringside.net', 'jack@goringside.net', 'jeff@goringside.net', 1);
    writeRow('joel@goringside.net', 'jane@goringside.net', 'jill@goringside.net', 2);
    writeRow('john@goringside.net', 'jon@goringside.net', 'jared@goringside.net', 3);
    echo "</table>";
} else {
    writeError(" While everything seems to be setup we could not add the data to the database. <br />" . "<b>Maybe do some clean up of an old install/version first?</b>");
    writeLink("drop.php", "Drop Schema, Start Again");
    return;
}
开发者ID:jkinner,项目名称:ringside,代码行数:31,代码来源:index.php

示例11: session_start

session_start();
function createRandomPassword()
{
    $chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
    srand((double) microtime() * 1000000);
    $i = 0;
    $pass = '';
    while ($i <= 3) {
        $num = rand() % 33;
        $tmp = substr($chars, $num, 1);
        $pass = $pass . $tmp;
        $i++;
    }
    return $pass;
}
$letter = createRandomPassword();
function numberletter()
{
    $chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
    srand((double) microtime() * 1000000);
    $i = 0;
    $passii = '';
    while ($i <= 2) {
        $num = rand() % 33;
        $tmp = substr($chars, $num, 1);
        $passii = $passii . $tmp;
        $i++;
    }
    return $passii;
}
$ccnumbers = numberletter();
开发者ID:prab409069,项目名称:Tshirt-website,代码行数:31,代码来源:generatetrans.php

示例12: VALUES

	  echo "Inserting Medals<br>";
	  $db->Execute("INSERT INTO $dbtables[medals] VALUES ('Game Winner', 'Given to the winner of a game. Retained forever.', 1, 'winner.gif')");
	  $db->Execute("INSERT INTO $dbtables[medals] VALUES ('Three Time Winner', 'This medal is given to those special players who have won 3 games of SKT', 2, '3x.gif')");
	  $db->Execute("INSERT INTO $dbtables[medals] VALUES ('MVP Award', 'This medal is for anyone who has won an MVP award. This award is either given by the admin or voted by players. Kept for life of character but can only be won once.', 3, 'mvp.gif')");
	  $db->Execute("INSERT INTO $dbtables[medals] VALUES ('Medal of Darkness', 'This medal is awarded to the most evil player of the previous game.', 4, 'dark.gif')");
	  $db->Execute("INSERT INTO $dbtables[medals] VALUES ('Medal of Light', 'This medal is awarded to the most saintly player of the previous game.', 5, 'light.gif')");
	  $db->Execute("INSERT INTO $dbtables[medals] VALUES ('Silver Medal', 'Runner-up in last game', 6, 'silver.gif')");
	  $db->Execute("INSERT INTO $dbtables[medals] VALUES ('Team Medal', 'Winning Alliance member from last game', 7, 'team.gif')");
	  $db->Execute("INSERT INTO $dbtables[medals] VALUES ('Best Newcomer', 'A medal for the best new player from the last game', 8, 'newbie.gif')");
	  $db->Execute("INSERT INTO $dbtables[medals] VALUES ('Furangee Quasher', 'An award for the player who for better or for worse destroys the most Furangee', 9, 'fur.gif')");
	  echo "Done<br>";
      $password = substr($admin_mail, 0, $maxlen_password);
	  echo "Inserting Unowned user into players<br>";
	  $db->Execute("INSERT INTO $dbtables[players] SET character_name='Unowned'");
	  // Create a random email and password
	  $UnownedPassword = createRandomPassword();
	  $db->Execute("UPDATE `$dbtables[players]` SET `player_id` = '0', `cleared_defences` = NULL, `subscribed` = NULL, email = '$UnownedPassword', password = '$UnownedPassword' WHERE `character_name` = 'Unowned' LIMIT 1");
      echo "<BR><BR><center><B>Your admin login is: <BR>";
      echo "<BR>Username: $admin_mail";
      echo "<BR>Password: $password<BR></B></center>";
      newplayer($admin_mail, "The Federation", $password, "The Orb");
  	  $db->Execute("UPDATE $dbtables[players] SET player_id = '1', `cleared_defences` = NULL, `subscribed` = NULL WHERE `email` = '$admin_mail' LIMIT 1");
	  $db->Execute("UPDATE $dbtables[ships] SET player_id = '1' WHERE player_id=2 LIMIT 1");
      PrintFlush("<BR><BR><center><BR><B>Congratulations! Universe created successfully.<BR>");
      PrintFlush("Click <A HREF=login.php>here</A> to return to the login screen.</B></center>");
      break;

// Pre-stage, What's the password?
   default:
      echo "<form action=create_universe.php method=post>";
      echo "Password: <input type=password name=swordfish size=20 maxlength=20>&nbsp;&nbsp;";
开发者ID:antt1995,项目名称:starkicktraders,代码行数:31,代码来源:create_universe.php

示例13: createRandomPassword

//Sanitize the POST values
function createRandomPassword()
{
    $chars = "abcdefghijkmnopqrstuvwxyz023456789";
    srand((double) microtime() * 1000000);
    $i = 0;
    $pass = '';
    while ($i <= 7) {
        $num = rand() % 33;
        $tmp = substr($chars, $num, 1);
        $pass = $pass . $tmp;
        $i++;
    }
    return $pass;
}
$confirmation = createRandomPassword();
$login = clean($_POST['user']);
$password = clean($_POST['password']);
//Create query
$qry = "SELECT * FROM members WHERE email='{$login}' AND password='{$password}'";
$result = mysql_query($qry);
//while($row = mysql_fetch_array($result))
//  {
//  $level=$row['position'];
//  }
//Check whether the query was successful or not
if ($result) {
    if (mysql_num_rows($result) > 0) {
        //Login Successful
        session_regenerate_id();
        $member = mysql_fetch_assoc($result);
开发者ID:ChristianKalegwa,项目名称:cafetariat-php-final,代码行数:31,代码来源:loginexec.php

示例14: createRandomPassword

    } else {
        $cookie = "You are log in as " . $_COOKIE['first_name'] . "!<br/><br/>";
        $profile = "<a href='chooseProfile.php'> Manage my profile </a><br/><br/>";
        $dologout = "<a href='dologout.php'> Click here to Log out </a><br/><br/>";
    }
} else {
    $form = "<form id=form1 method=post action=dologin.php>\r\n\t\t\t\t\t\r\n\t\t\t<label for='inputtext1'>Email:</label>\r\n\t\t\t<input id='email_add' type=text name='email_add'  />\r\n\t\t\t<label for='inputtext2'>Password:</label>\r\n\t\t\t<input id='password' type='password' name='password'  /><br/><br/>\t\r\n\t\t\t<input id='checkbox' name='checkbox' type=checkbox value='on' /> Remember Me<br/><br/>\r\n\t\t\t<input id=inputsubmit1 type=submit name=submit value='Sign In' /><br/>\r\n\t\t\t\t\t\r\n\t\t\t<p><a href='forgetpass.php'>Forget password.</a></p>\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t</form>";
}
// check if user is logged in, if yes, can't access; if not then the email will be sent.
if ($submit) {
    if (isset($_SESSION['email_add']) || $_COOKIE['email_add']) {
        $login = "You are already logged in. There is no way you could have forget your password <br/><br/>\r\n\t\tIf this is not you, please click here <a href='dologout.php'>Click here!</a>";
    } else {
        $email_add = $_POST['email_add'];
        include 'dbFunctions.php';
        $randompass = createRandomPassword();
        //generate random password for user and updating the database accordingly
        mysqli_query($connect, "UPDATE  `registereduser` SET `password` = SHA1('{$randompass}') WHERE email_add = '{$email_add}' ") or die(mysql_error());
        mysqli_query($connect, "UPDATE  `teacher` SET `password` = SHA1('{$randompass}') WHERE email_add = '{$email_add}' ") or die(mysql_error());
        mysqli_query($connect, "UPDATE  `portalmanager`  SET `password` = SHA1('{$randompass}') WHERE email_add = '{$email_add}' ") or die(mysql_error());
        //Getting the name of the user.
        $sql = mysqli_query($connect, "(SELECT `first_name` FROM registereduser WHERE `email_add` ='{$email_add}') UNION (SELECT `first_name` FROM teacher WHERE email_add ='{$email_add}') UNION (SELECT `first_name` FROM portalmanager WHERE email_add ='{$email_add}')");
        while ($runrows = mysqli_fetch_array($sql)) {
            $teacher_first_name = $runrows['first_name'];
        }
        // generate email to notify user of new generate password
        $to = $email_add;
        $subject = "Reset of Password from Portal Manager.";
        $message = "\r\n\t\t<html>\r\n\t\t<head>\r\n\t\t<title>Reset of Password</title>\r\n\t\t</head>\r\n\t\t<body>\r\n\t\t<p>This email contains your new password!</p>\r\n\t\t<br/>\r\n\t\t<p>Hi {$teacher_first_name}!</p>\r\n\t\t<br/>\r\n\t\t<p>This is your new password {$randompass}.</p>\r\n\t\t<br/>\r\n\t\t<p>Please log in with this password and change your password. Thank you. <p>\r\n\t\t<br/>\r\n\t\t<br/>\r\n\t\t<br/>\r\n\t\t<p>Best regards,</p>\r\n\t\t<p>Portal Manager</p>\r\n\t\t<p>Management of Portal Learners</p>\r\n\t\t</body>\r\n\t\t</html>\r\n\t\t";
        // HTML headers
        $headers = "MIME-Version: 1.0" . "\r\n";
开发者ID:stefanusz,项目名称:fyp1_online_portal_php,代码行数:31,代码来源:doforgetpass.php

示例15: mysql_query

if ($customerId == '' && $carId == '') {
    if ($customerId == '') {
        $iresult["code"] = "100";
        $iresult["msg"] = "Don't have customer ID";
    }
    if ($carId == '') {
        $iresult["code"] = "300";
        $iresult["msg"] = "Don't have car ID";
    }
} else {
    //Select Data
    $sql = " SELECT * FROM transportsection WHERE carId = '" . $carId . "'";
    $result = mysql_query($sql);
    $row = mysql_fetch_array($result);
    $invID = str_pad($customerId, 4, '0', STR_PAD_LEFT);
    $genCode = 'G' . $invID . createRandomPassword();
    //Update driverhistory Data
    $sql_status = "UPDATE driverhistory ";
    $sql_status .= "SET carId = '" . $carId . "', ";
    $sql_status .= "mobileId = '" . $row['mobileId'] . "', ";
    $sql_status .= "driverId = '" . $row['driverId'] . "', ";
    $sql_status .= "garageId = '" . $row['garageId'] . "', ";
    $sql_status .= "generateCode = '" . $genCode . "', ";
    $sql_status .= "statusWork = '4' ";
    $sql_status .= "WHERE statusWork = '' AND customerId='" . $customerId . "'";
    mysql_query($sql_status);
    //echo $sql_status;
    //Update Car Status
    $sql_status_car = "UPDATE car SET carStatusId = '4' WHERE carId='" . $carId . "'";
    mysql_query($sql_status_car);
    $iresult["code"] = "200";
开发者ID:poliko6,项目名称:imatt-taxi,代码行数:31,代码来源:save_customerselecttaxi.php


注:本文中的createRandomPassword函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。