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

PHPを使用して動的にHTMLページを生成する方法は?

    誰かが実際のHTMLを生成/作成したい場合に備えて ファイル...

    $myFile = "filename.html"; // or .php   
    $fh = fopen($myFile, 'w'); // or die("error");  
    $stringData = "your html code php code goes here";   
    fwrite($fh, $stringData);
    fclose($fh);
    

    楽しみ!



    1. 結果を返さない複数のテーブルでのMYSQLJOIN

    2. RoR:postgresではchange_columnはできませんが、MySQLでは問題ありません(開発用のMySQL、HerokuのPostgres)

    3. MySQLで日付をフォーマットして、MonthName、Yearを返します

    4. Windowsコマンドスクリプトでsql*plusを使用してフローを制御するにはどうすればよいですか?