我随机尝试开发一个在 PHP 中工作的网络浏览器。我知道这是一个非常小的程序,如果你研究它,但我似乎没有让它工作。虽然我已经解决了,但我无法让它显示页面。
请查看下面的代码并告诉我我缺少什么。
<?php
$address = $_GET['address']
?>
<html>
<head>
<title>NeXon Web</title>
<link href="css/style.css" type="text/css" media="all"/>
</head>
<body>
<div id="header">
<img src="images/logo.png" id="logo"/>
<img src="images/back.png" id="back" />
<img src="images/fwd.png" id="fwd"/>
<form method="GET" action="index.php">
<input name="address" type="address" id="address" placeholder="Address..."/>
<input type="submit" value="Go" id="submit"/>
</form>
</div>
<div id="body">
<iframe src="<?php $address ?>" id="frame" height="800px" width="1100px" />
</div>
</body>
</html>
我写了这段代码,但似乎没有让网页显示。我尝试了 POST 和 GET 方法。请帮忙,我还是个新手:/
第二个代码是由其他人编写的,在他告诉我该怎么做后我无法联系,我需要第二个代码的认真帮助,
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<style>
@import="style.css";
</style>
</head>
<body>
<?php
if($_POST){
$url=$_POST['url'];
}
?>
<script language="javascript">
function w(){ window.open('$url'); }
</script>
<div class="box">
<form method="post" action="index.php">
Address: <input type="text" name="url" id="url" class="input_text" />
<input type="submit" value="submit" class="button">
</form>
</div>
<div class="url">
</div>
</body>
</html>
老实说,我真的不知道第二个代码是如何工作的:/