sql >> データベース >  >> RDS >> Mysql

PHPを使用してmysqlデータベースからデータをフェッチする方法

    ここにサンプルコードがあります:

    $headers = 'From: [email protected]' . "\r\n";
    $mysqli = new mysqli("localhost", "user", "password", "database");
    $output = $mysqli->prepare("SELECT id FROM table WHERE x=?");
    $output->bind_param("s", $parameter);
    $output->execute();
    $output->store_result();
    $output->bind_result($id);
    while ($output->fetch()) 
    {
        mail($to, $subject, $emailcontent, $additionalheader);
    }
    $output->close();
    

    これらのリンクを見てください:
    1。 http://php.net/manual/de/mysqli.quickstart .prepared-statements.php
    2。 http://us3.php.net/manual/de/book.mail .php




    1. SQLServerでの日付抽出に関する問題

    2. Rails3Mysqlの問題

    3. PostgreSQL:selectnullとfalseのパフォーマンス

    4. LocalDateTime、ZonedDateTime、およびTimestamp