使用pdo检查电子邮件是否存在

时间:2016-03-16 08:29:00

标签: php pdo

这是我用来添加用户的部分。

apply plugin: 'com.android.library'


android {
    compileSdkVersion 23
    buildToolsVersion '23.0.2'
    dexOptions {
        incremental true
        javaMaxHeapSize "2048M"
        jumboMode = true
    }

    defaultConfig {
        minSdkVersion 16
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
        multiDexEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_7
        targetCompatibility JavaVersion.VERSION_1_7
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')

    compile project(':rajawali')
}

2 个答案:

答案 0 :(得分:1)

检查电子邮件是否存在。您必须写一个查询是否该电子邮件存储在数据库中。如果查询结果不为空,您可以发出电子邮件存在的消息。如果查询结果为空,您可以让他成为新用户。

为此你必须写这个查询

<httpRuntime maxRequestLength="102400" executionTimeout="3600"/></httpRuntime>.

答案 1 :(得分:0)

我个人通过使用查询和if语句

来做到这一点
$query = $conn->prepare("SELECT * FROM users WHERE email = :email");
$query->bindParam(':email', $_POST['email']);
if ($query->rowcount() = 0)
{
// insert account into database
}
else {
// display error message
}