Hi,
I would like to create a program that recognizes palindromes and determines if a word is a palindrome. Any ideas??
In a palindrome, the reverse is the same as the original, so
if ($sString == strrev($sString)) { echo $sString.' is a palindrome<BR>'; }