//form.html
<html>
<head>
<meta charset="utf-8">
<title>루키 튜토리얼(runoob.com)</title>
</head>
<body>
<form action="welcome.php" method="post">
이름: <input type="text" name="fname"> ;
Age: <input type="text" name="age">
<input type="submit" value="Submit">
</form>
</body> ;
</html>
//welcome.php
<?php
header("content-type:text/html;charset=utf-8");
$name =$_POST['fname'];
$age=$_POST['age'] ;
echo $name;
echo $age; Google 브라우저에서는 정상적으로 실행되지만 360 브라우저에서는 실행되지 않습니다. 왜일까요?
360 브라우저 F12를 확인해 보세요. 호환성 문제입니다. 정상적으로 표시될 수 있는 360 브라우저용 코드를 작성하고 둘 사이의 차이점을 비교해보면 그 이유를 알게 되고 호환성 경험이 쌓이게 됩니다.