PHP 폼 작업 먼저 실행 "= 폼 작업 먼저 실행 뭐가 문제 야?PHP가 "=
<?php
if(isset($_POST['submit']))
{
$name = $_POST['name'];
echo "User Has submitted the form and entered this name : <b> $name </b>";
echo "<br>You can use the following form again to enter a new name.";
}
?>
from my .htaccess. $_SERVER['PHP_SELF']
실행에 복귀 스크립트 이름과 action=""
너무 실행에서 페이지에 제출하기 때문에 어쩌면
## Turn on and setup apache rewrite ##
RewriteEngine On
Options +Followsymlinks
RewriteBase/
## Dissable directory indexing ##
Options -Indexes
## Remove trailing slash from end of uri ##
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteCond %{REQUEST_URI} !/$
RewriteRule (.*) $1\.php [L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)/$ /$1 [R=301,L]
# Redirect to non.php extension
RewriteCond %{THE_REQUEST} ^GET\ /([^/]+/)*[^.]+\.php(\?[^\ ]*)?\ HTTP/
RewriteRule ^(([^/]+/)*[^.]+)\.php$ $1 [R=301,L]
## Rewrite Rules ##
RewriteRule ^([0-9-a-z-A-Z-_]+)/?$ goto.php?id=$1 [L]
RewriteRule ^account/(.*)$ $1.php [L]
무엇을합니까? –
귀하의 질문에 아무런 의미가 없다, 귀하의 코드는 우리가 그것을 볼 수있는 것처럼 보인다, 그래서 제발 당신의 질문을 수정 해 주시기 바랍니다 ... –
그것은 내가 이미 페이지를 열어 콘텐츠가 제출되기를 기다리지 않습니다 – user1047737