PHP/Network/URL Redirect — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 07:06, 26 мая 2010
Redirect to a URL
<?
header("Location: www.wbex.ru");
?>
Using the ? Operator
<html>
<head>
<title>Using the ? Operator</title>
</head>
<body>
<?php
$mood = "sad";
$text = ( $mood=="happy" ) ? "a good mood" : "Not happy but $mood";
print "$text";
?>
</body>
</html>