0

アップデート

<?PHP
    $Title = "This is the Open Grah script";
    $Description = "This is the one and only Description, or better yeh the first 150 charecters of the main content on your page. What ever you feel like really!";
    $Twitter = "@obama";

     echo "<html>
            <head>
             <title> $Title </title>";
     echo '<meta name="description" content=" ';
     echo $Description;
     echo '" />';

     echo "<meta name="twitter:card" content="summary" />";  
     echo '<meta name="twitter:site" content"';
     echo $Twitter
     echo '"/>';
     echo '<meta name="twitter:title" content"';
     echo $Title;
     echo '" />';
     echo '<meta name="twitter:description" content" ';
     echo $Description;
     echo '" />';

    ?>

前回の質問に続いて、私のページがまったく読み込まれなくなりました。時間を無駄にしていると感じたら申し訳ありません。おそらく単なるタイプミスです。

4

1 に答える 1

3
 echo "<meta name='twitter:card' content='summary' />";  

"で始まる文字列内で使用していないことを確認する必要があります"'または\"で始まる文字列内で使用する必要があります"

その後の 2 行がありません;

echo $Twitter;
于 2015-05-05T14:39:15.617 に答える