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

php構文エラー、予期しないT_VARIABLE、29行目に'、'、または''が必要です

    連結子を忘れました:

    echo'
    <span class="post">
        <h1>'$result['title'];'</h1>
        <h2>'$result['date'];'</h2>
        <p>'$result['contents'];'</p>
        <h3>'$result['author'];'</h3>
    ';
    

    する必要があります

    echo'
    <span class="post">
        <h1>'.$result['title'].'</h1>
        <h2>'.$result['date'].'</h2>
        <p>'.$result['contents'].'</p>
        <h3>'.$result['author'].'</h3>
    ';
    



    1. SQLServerでの更新の選択

    2. PostgreSQL9.0のパーティションテーブルのサイズ

    3. MySQLで自動インクリメントを使用した複合キーの定義

    4. JOINSとwhileステートメント