Pick a word:
Code:
<html>
<head>
<title>PHP TEST YAHHH</title>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body>
<div class="topbar">
<?php
include 'navbar.php';
?>
</div>
<?php
//palindrome
$word = $_GET["word"];
if ($word != "")
{
echo 'String: '.$word.'<br>';
$reverse = strrev($word);
if ($word == $reverse)
{
echo 'This string is a palindrome';
}
else
{
echo 'This is not a palindrome';
echo '<br>';
echo 'The reverse of '.$word.' is '.$reverse.'!';
}
echo '<br><br>';
echo 'Pick another word: ';
}
else
{
echo 'Pick a word: ';
}
?>
<form action="ex052.php" method="get">
<input type = "text" name="word"><br>
<input type = "submit">
</form>
<?php
echo '<br>';
?>
<div class="codebox">
<h3>Code:</h3>
<?php
highlight_file("ex052.php");
?>
</div>
</body>
</html>