Jump to content
php.lv forumi

Pastnieks


Pentiums

Recommended Posts

<?php
if(!isset($_GET['id']) || $_GET['id'] == '0') {
header('Location:?id=1');
}
echo '<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Pastnieks</title>
</head>
<body>
<center><iframe name="pastnieks" src="http://paste.php.lv/'.$_GET['id'].'" width="1033" height="763">
</iframe><br><br>';
$mazak = $_GET['id'] - 1;
$vairak = $_GET['id'] + 1;
echo '<a href="?id='.$mazak.'">'.$mazak.'</a> | <a href="?id='.$vairak.'">'.$vairak.'</a>
</center>
</body>
</html>';
?>

Link to comment
Share on other sites

Nevajag jau uzspiest webservera un php uzlikšanu. Var viegli iztikt ar pliku html+js ;)

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Pastnieks JS</title>
<script type="text/javascript">
 var id = 7;
 function next()
 {
document.getElementById("pastnieks").src = "http://paste.php.lv/" + ++id;
return false;
 }
 function prev()
 {
document.getElementById("pastnieks").src = "http://paste.php.lv/" + --id;
return false;
 }
</script>
</head>
<body>
<center>
 <iframe id="pastnieks" width="1033" height="763"></iframe>
 <br/><br/>
 <script "text/javascript">next();</script>
 <a href="#" onclick="return prev();"><<</a> | <a href="#" onclick="return next();">>></a>
</center>
</body>
</html>

Link to comment
Share on other sites

Man līdzīgs ir arī priekš yy.lv

Tikai man tie turpu šurpu ir augšā, pie saitēm ir arī id, lai zinātu kur esi un ir mazinš input lauks, kur ierakstīt tipa `iet uz`.

Bez PHP.

 

Vēl tur (kodā) varētu uzmest custom google search mekli.

Link to comment
Share on other sites

×
×
  • Create New...