APM설치후 PHP로 소스를 만들어서 테스트를 하는데
html의 폼테그를 이용해 php에 값을 전달하려는데 전혀
전달되지 않습니다.
예를 들어
input.html
<html>
<form action="./action.php" method="post">
<input type="text" name="name">
<input type="submit" value="확인">
</html>
action.php
<?
echo("$name");
?>
이런식인데요.
주소창을 보면 폼값이 가긴가는데 변수에 전혀 매칭이 되지 않는것입니다.
아파치 설정을 잘못해서 그런건가요?