Jump to content

Make string read Backwards


pro_se

Recommended Posts

I am writing a code that will read a user input and flip the text around. I have the code made so if you have a space it will reverse it but i want it if you input: 'car' it will say 'rac'... any help will be appreciated!
[code]
<?php
if (isset ($_POST["flip"])) {                 
$text = $_POST['text'];
$brokenup = explode(" ", $text);
echo $brokenup[1];
echo $brokenup[0];
}
?>
[/code]
Link to comment
https://forums.phpfreaks.com/topic/29676-make-string-read-backwards/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.