⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 usercreate.php

📁 网页打卡钟系统,源码提供给大家学习一下啦!希望给大家带来帮助
💻 PHP
📖 第 1 页 / 共 3 页
字号:
echo "              <tr><td class=table_rows height=25 width=20% style='padding-left:32px;' nowrap>Password:</td><td colspan=2 width=80%                       style='padding-left:20px;'><input type='password' size='25' maxlength='25' name='password'></td></tr>\n";echo "              <tr><td class=table_rows height=25 width=20% style='padding-left:32px;' nowrap>Confirm Password:</td><td colspan=2 width=80%                       style='padding-left:20px;'>                      <input type='password' size='25' maxlength='25' name='confirm_password'></td></tr>\n";echo "              <tr><td class=table_rows height=25 width=20% style='padding-left:32px;' nowrap>Email Address:</td><td colspan=2 width=80%                      style='color:red;font-family:Tahoma;font-size:11px;padding-left:20px;'>                      <input type='text' size='25' maxlength='75' name='email_addy' value=\"$email_addy\">&nbsp;*</td></tr>\n";echo "              <tr><td class=table_rows height=25 width=20% style='padding-left:32px;' nowrap>Office:</td><td colspan=2 width=80%                      style='color:red;font-family:Tahoma;font-size:10px;padding-left:20px;'>                      <select name='office_name' onchange='group_names();'>\n";echo "                      </select>&nbsp;*</td></tr>\n";echo "              <tr><td class=table_rows height=25 width=20% style='padding-left:32px;' nowrap>Group:</td><td colspan=2 width=80%                      style='color:red;font-family:Tahoma;font-size:10px;padding-left:20px;'>                      <select name='group_name' onfocus='group_names();'>                        <option selected>$group_name</option>\n";echo "                      </select>&nbsp;*</td></tr>\n";echo "              <tr><td class=table_rows height=25 width=20% style='padding-left:32px;' nowrap>Sys Admin User?</td>\n";if ($admin_perms == "1") {echo "                <td class=table_rows align=left width=80% style='padding-left:20px;'><input type='radio' name='admin_perms' value='1'                     checked>&nbsp;Yes<input type='radio' name='admin_perms' value='0'>&nbsp;No</td></tr>\n";} else {echo "                <td class=table_rows align=left width=80% style='padding-left:20px;'><input type='radio' name='admin_perms' value='1'>&nbsp;Yes                    <input type='radio' name='admin_perms' value='0' checked>&nbsp;No</td></tr>\n";}echo "              <tr><td class=table_rows height=25 width=20% style='padding-left:32px;' nowrap>Time Admin User?</td>\n";if ($time_admin_perms == "1") {echo "                <td class=table_rows align=left width=80% style='padding-left:20px;'><input type='radio' name='time_admin_perms' value='1'                     checked>&nbsp;Yes<input type='radio' name='time_admin_perms' value='0'>&nbsp;No</td></tr>\n";} else {echo "                <td class=table_rows align=left width=80% style='padding-left:20px;'><input type='radio' name='time_admin_perms' value='1'>&nbsp;Yes                    <input type='radio' name='time_admin_perms' value='0' checked>&nbsp;No</td></tr>\n";}echo "              <tr><td class=table_rows height=25 width=20% style='padding-left:32px;' nowrap>Reports User?</td>\n";if ($reports_perms == "1") {echo "                <td class=table_rows align=left width=80% style='padding-left:20px;'><input type='radio' name='reports_perms' value='1'                     checked>&nbsp;Yes<input type='radio' name='reports_perms' value='0'>&nbsp;No</td></tr>\n";} else {echo "                <td class=table_rows align=left width=80% style='padding-left:20px;'><input type='radio' name='reports_perms' value='1'>&nbsp;Yes                    <input type='radio' name='reports_perms' value='0' checked>&nbsp;No</td></tr>\n";}echo "              <tr><td class=table_rows height=25 width=20% style='padding-left:32px;' nowrap>User Account Disabled?</td>\n";if ($post_disabled == "1") {echo "                <td class=table_rows align=left width=80% style='padding-left:20px;'><input type='radio' name='disabled' value='1'                     checked>&nbsp;Yes<input type='radio' name='disabled' value='0'>&nbsp;No</td></tr>\n";} else {echo "                <td class=table_rows align=left width=80% style='padding-left:20px;'><input type='radio' name='disabled' value='1'>&nbsp;Yes                    <input type='radio' name='disabled' value='0' checked>&nbsp;No</td></tr>\n";}echo "              <tr><td class=table_rows align=right colspan=3 style='color:red;font-family:Tahoma;font-size:10px;'>*&nbsp;required&nbsp;</td></tr>\n";echo "            </table>\n";echo "            <table align=center width=60% border=0 cellpadding=0 cellspacing=3>\n";echo "              <tr><td height=40>&nbsp;</td></tr>\n";echo "              <tr><td width=30><input type='image' name='submit' value='Create User' align='middle'                       src='../images/buttons/next_button.png'></td><td><a href='useradmin.php'><img src='../images/buttons/cancel_button.png'                       border='0'></td></tr></table></form></td></tr>\n";include '../footer.php'; exit;}$post_username = addslashes($post_username);$display_name = addslashes($display_name);$password = crypt($password, 'xy');$confirm_password = crypt($confirm_password, 'xy');$query3 = "insert into ".$db_prefix."employees (empfullname, displayname, employee_passwd, email, groups, office, admin, reports, time_admin, disabled)            values ('".$post_username."', '".$display_name."', '".$password."', '".$email_addy."', '".$group_name."', '".$office_name."', '".$admin_perms."',            '".$reports_perms."', '".$time_admin_perms."', '".$post_disabled."')";$result3 = mysql_query($query3);echo "<table width=100% height=89% border=0 cellpadding=0 cellspacing=1>\n";echo "  <tr valign=top>\n";echo "    <td class=left_main width=180 align=left scope=col>\n";echo "      <table class=hide width=100% border=0 cellpadding=1 cellspacing=0>\n";echo "        <tr><td class=left_rows height=11></td></tr>\n";echo "        <tr><td class=left_rows_headings height=18 valign=middle>Users</td></tr>\n";echo "        <tr><td class=left_rows height=18 align=left valign=middle><img src='../images/icons/user.png' alt='User Summary' />&nbsp;&nbsp;                <a class=admin_headings href='useradmin.php'>User Summary</a></td></tr>\n";echo "        <tr><td class=current_left_rows height=18 align=left valign=middle><img src='../images/icons/user_add.png' alt='Create New User' />                &nbsp;&nbsp;<a class=admin_headings href='usercreate.php'>Create New User</a></td></tr>\n";echo "        <tr><td class=left_rows height=18 align=left valign=middle><img src='../images/icons/magnifier.png' alt='User Search' />&nbsp;&nbsp;                <a class=admin_headings href='usersearch.php'>User Search</a></td></tr>\n";echo "        <tr><td class=left_rows height=33></td></tr>\n";echo "        <tr><td class=left_rows_headings height=18 valign=middle>Offices</td></tr>\n";echo "        <tr><td class=left_rows height=18 align=left valign=middle><img src='../images/icons/brick.png' alt='Office Summary' />&nbsp;&nbsp;                <a class=admin_headings href='officeadmin.php'>Office Summary</a></td></tr>\n";echo "        <tr><td class=left_rows height=18 align=left valign=middle><img src='../images/icons/brick_add.png' alt='Create New Office' />&nbsp;&nbsp;                <a class=admin_headings href='officecreate.php'>Create New Office</a></td></tr>\n";echo "        <tr><td class=left_rows height=33></td></tr>\n";echo "        <tr><td class=left_rows_headings height=18 valign=middle>Groups</td></tr>\n";echo "        <tr><td class=left_rows height=18 align=left valign=middle><img src='../images/icons/group.png' alt='Group Summary' />&nbsp;&nbsp;                <a class=admin_headings href='groupadmin.php'>Group Summary</a></td></tr>\n";echo "        <tr><td class=left_rows height=18 align=left valign=middle><img src='../images/icons/group_add.png' alt='Create New Group' />&nbsp;&nbsp;                <a class=admin_headings href='groupcreate.php'>Create New Group</a></td></tr>\n";echo "        <tr><td class=left_rows height=33></td></tr>\n";echo "        <tr><td class=left_rows_headings height=18 valign=middle colspan=2>In/Out Status</td></tr>\n";echo "        <tr><td class=left_rows height=18 align=left valign=middle><img src='../images/icons/application.png' alt='Status Summary' />                &nbsp;&nbsp;<a class=admin_headings href='statusadmin.php'>Status Summary</a></td></tr>\n";echo "        <tr><td class=left_rows height=18 align=left valign=middle><img src='../images/icons/application_add.png' alt='Create Status' />&nbsp;&nbsp;                <a class=admin_headings href='statuscreate.php'>Create Status</a></td></tr>\n";echo "        <tr><td class=left_rows height=33></td></tr>\n";echo "        <tr><td class=left_rows_headings height=18 valign=middle colspan=2>Miscellaneous</td></tr>\n";echo "        <tr><td class=left_rows height=18 align=left valign=middle><img src='../images/icons/clock.png' alt='Add/Edit/Delete Time' />                &nbsp;&nbsp;<a class=admin_headings href='timeadmin.php'>Add/Edit/Delete Time</a></td></tr>\n";echo "        <tr><td class=left_rows height=18 align=left valign=middle><img src='../images/icons/application_edit.png' alt='Edit System Settings' />                &nbsp;&nbsp;<a class=admin_headings href='sysedit.php'>Edit System Settings</a></td></tr>\n";echo "        <tr><td class=left_rows height=18 align=left valign=middle><img src='../images/icons/database_go.png'                alt='Upgrade Database' />&nbsp;&nbsp;&nbsp;<a class=admin_headings href='dbupgrade.php'>Upgrade Database</a></td></tr>\n";echo "      </table></td>\n";echo "    <td align=left class=right_main scope=col>\n";echo "      <table width=100% height=100% border=0 cellpadding=10 cellspacing=1>\n";echo "        <tr class=right_main_text>\n";echo "          <td valign=top>\n";echo "            <br />\n";echo "            <table align=center class=table_border width=60% border=0 cellpadding=0 cellspacing=3>\n";echo "              <tr>\n";echo "                <td class=table_rows width=20 align=center><img src='../images/icons/accept.png' /></td><td class=table_rows_green>                    &nbsp;User created successfully.</td></tr>\n";echo "            </table>\n";echo "            <br />\n";echo "            <table align=center class=table_border width=60% border=0 cellpadding=3 cellspacing=0>\n";echo "              <tr>\n";echo "                <th class=rightside_heading nowrap halign=left colspan=3><img src='../images/icons/user_add.png' />&nbsp;&nbsp;&nbsp;Create User                </th></tr>\n";echo "              <tr><td height=15></td></tr>\n";$query4 = "select empfullname, displayname, email, groups, office, admin, reports, time_admin, disabled from ".$db_prefix."employees	  where empfullname = '".$post_username."'          order by empfullname";$result4 = mysql_query($query4);while ($row=mysql_fetch_array($result4)) {$username = stripslashes("".$row['empfullname']."");$displayname = stripslashes("".$row['displayname']."");$user_email = "".$row['email']."";$office = "".$row['office']."";$groups = "".$row['groups']."";$admin = "".$row['admin']."";$reports = "".$row['reports']."";$time_admin = "".$row['time_admin']."";$disabled = "".$row['disabled']."";}mysql_free_result($result4);echo "              <tr><td class=table_rows height=25 width=20% style='padding-left:32px;' nowrap>Username:</td><td align=left class=table_rows                       colspan=2 width=80% style='padding-left:20px;'>$username</td></tr>\n";echo "              <tr><td class=table_rows height=25 width=20% style='padding-left:32px;' nowrap>Display Name:</td><td align=left class=table_rows                       colspan=2 width=80% style='padding-left:20px;'>$displayname</td></tr>\n";echo "              <tr><td class=table_rows height=25 width=20% style='padding-left:32px;' nowrap>Password:</td><td align=left class=table_rows                       colspan=2 width=80% style='padding-left:20px;'>***hidden***</td></tr>\n";echo "              <tr><td class=table_rows height=25 width=20% style='padding-left:32px;' nowrap>Email Address:</td><td align=left class=table_rows                       colspan=2 width=80% style='padding-left:20px;'>$user_email</td></tr>\n";echo "              <tr><td class=table_rows height=25 width=20% style='padding-left:32px;' nowrap>Office:</td><td align=left class=table_rows                       colspan=2 width=80% style='padding-left:20px;'>$office</td></tr>\n";echo "              <tr><td class=table_rows height=25 width=20% style='padding-left:32px;' nowrap>Group:</td><td align=left class=table_rows                       colspan=2 width=80% style='padding-left:20px;'>$groups</td></tr>\n";if ($admin == "1") {$admin = "Yes";}else {$admin = "No";}echo "              <tr><td class=table_rows height=25 width=20% style='padding-left:32px;' nowrap>Sys Admin User?</td><td align=left class=table_rows                       colspan=2 width=80% style='padding-left:20px;'>$admin</td></tr>\n";if ($time_admin == "1") {$time_admin = "Yes";}else {$time_admin = "No";}echo "              <tr><td class=table_rows height=25 width=20% style='padding-left:32px;' nowrap>Time Admin User?</td><td align=left class=table_rows                       colspan=2 width=80% style='padding-left:20px;'>$time_admin</td></tr>\n";if ($reports == "1") {$reports = "Yes";}else {$reports = "No";}echo "              <tr><td class=table_rows height=25 width=20% style='padding-left:32px;' nowrap>Reports User?</td><td align=left class=table_rows                       colspan=2 width=80% style='padding-left:20px;'>$reports</td></tr>\n";if ($disabled == "1") {$disabled = "Yes";}else {$disabled = "No";}echo "              <tr><td class=table_rows height=25 width=20% style='padding-left:32px;' nowrap>User Account Disabled?</td><td align=left class=table_rows                       colspan=2 width=80% style='padding-left:20px;'>$disabled</td></tr>\n";echo "              <tr><td height=15></td></tr>\n";echo "            </table>\n";echo "            <table align=center width=60% border=0 cellpadding=0 cellspacing=3>\n";echo "              <tr><td height=20 align=left>&nbsp;</td></tr>\n";echo "              <tr><td><a href='usercreate.php'><img src='../images/buttons/done_button.png' border='0'></td></tr></table></td></tr>\n";include '../footer.php'; exit;}?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -