google app engine (GAE)에 php파일 연동

google app engine (GAE)에 php파일 연동

QA

google app engine (GAE)에 php파일 연동

답변 1

본문

index.php

 

<!doctype html>

<html>

  <head>

    <meta charset="utf-8">

    <title>WEB</title>

  </head>

  <body>

    <h1>WEB</h1>

    <ol>

      <li>HTML</li>

    </ol>

    <a href="create.php">create</a>

    <h2>Welcome</h2>

    Hello World!

  </body>

</html>

 

----------------------------------------------------------------------------------

create.php

 

<!doctype html>

<html>

  <head>

    <meta charset="utf-8">

    <title>WEB</title>

  </head>

  <body>

    <h1>WEB</h1>

    <ol>

      <li>HTML</li>

    </ol>

    <form action="process_create.php" method="POST">

      <p><input type="text" name="title" placeholder="title"></p>

      <p><textarea name="description" placeholder="description"></textarea></p>

      <p><input type="submit"></p>

    </form>

  </body>

</html>

 

-----------------------------------------------------------------------------

 

 

 

 

Google App Engine(GAE)에 php파일들을 deploy하고 실행을 하면 

create.php 화면으로 넘어가질 않습니다. 

SQL이나 google storage는 모두 잘 connect 되었구요. 

create을 눌러보면 주소창에는 appspot.com/create.php라고 나오구요 

화면은 index.php과 같습니다. 

무슨 문제일까요?

이 질문에 댓글 쓰기 :

답변 1

답변을 작성하시기 전에 로그인 해주세요.
QA 내용 검색
질문등록
전체 1,534
© SIRSOFT
현재 페이지 제일 처음으로