コード例 #1
0
ファイル: installtrial.php プロジェクト: kyght/InstallTracker
function KYGINTR_jal_upgrade()
{
    global $wpdb;
    global $KYGINTR_jal_db_version;
    $charset_collate = $wpdb->get_charset_collate();
    $installed_ver = get_option("jal_db_version");
    if ($installed_ver != $KYGINTR_jal_db_version) {
        createtables();
        update_option('jal_db_version', $KYGINTR_jal_db_version);
    }
}
コード例 #2
0
ファイル: login.php プロジェクト: Shruti-Bhati/ADLE-security
<?php

require_once 'createtable.php';
createtables();
?>
<html>
<body>
<center>
<br /><br /><br /><br />
<form action = "verify.php" method = "post">
	<table>
		<tr>
			<td> USERNAME * : </td><td><input type="text" name="uname"></td>
		</tr>
		<tr></tr>
		<tr>
			<td>PASSWORD * :</td><td><input type="password" name="pass"></td>
		</tr>
	</table>
	<br /><br />
	<input type="submit" value="submit">
</form>
<a href="signup.php">New User ! ! Click Here </a>
</center>
</body>
</html>