亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

What is the difference between 360 browser and IE browser? ? ?
劉進(jìn)乾
劉進(jìn)乾 2020-11-10 21:38:27
0
1
3088

//form.html

<html>

<head>

<meta charset="utf-8">

<title>Rookie Tutorial (runoob.com)</title>

</head>

<body>

<form action= "welcome.php" method="post">

Name: <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;

?>

These two pieces of code are in It can run normally in IE and Google browser, but not in 360 browser. Why?

劉進(jìn)乾
劉進(jìn)乾

reply all(1)
滅絕師太

Check F12 of 360 Browser. It is a compatibility issue. Write a set of codes that can be displayed normally on 360 Browser independently, and then compare the differences between the two. Then you will know why, and then you will accumulate compatibility information. experience.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template