Hey everyone,
I was randomly trying to develop a web browser that works in php.
I know this is a really small program if you look into it but I dont seem to get it to work. though I have worked it out, but I cant get it to display pages.
Please have a look at my code below and tell me what im missing.
<?php
$address = "$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 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" border="0" height="800px" width="1100px" />
</div>
</body>
</html>
I know most of the links are not working and only display images like the logo, back, and fwd. but over all, the main test is not working :/
Thanks in advance :)