前提・実現したいこと
初歩的な質問ですみません。
Visual Studio Codeにて、下記プログラム(.php)を書きました。
拡張機能Live Severでブラウザで確認しようとしたところ、PHPファイルのアイコンのみが表示され、操作としてはファイルのダウンロードしかできません。
Live SeverではPHPは実行できないのでしょうか?
また、Live SeverのようにPHPファイルを可視化できる方法がありましたら教えていただきたいです。
該当のソースコード
<?php session_start(); $error_message = ""; if(isset($_POST["login"])) { if($_POST["user_name"] == "webtan" && $_POST["password"] == "webtan_pass") { $_SESSION["user_name"] = $_POST["user_name"]; $login_success_url = "login_success.php"; header("Location: {$login_success_url}"); exit; } $error_message = "※ID、もしくはパスワードが間違っています。<br> もう一度入力して下さい。"; } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <?phpif($error_message) {
echo $error_message;
}
?>
回答1件
あなたの回答
tips
プレビュー