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

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개

appspot.com/create.php 을 그냥 바로 실행 시켜 보세요.  동작이 되나..

 

아마 동작이 안될 것 같습니다.

답변을 작성하려면 로그인이 필요합니다.