Reversed text: selppAsekiLsiuL
<?php
include("includes/header.php");
// Function 1: Calculate the sum of an array of numbers
function calculateSum($numbers) {
return array_sum($numbers);
}
// Function 2: Reverse a string
function reverseString($text) {
return strrev($text);
}
// Function 3: Generate an HTML button with custom text
function createButton($buttonText) {
return "<button style='background-color: orange; color: white; padding: 10px; border: none; border-radius: 5px;'>$buttonText</button>";
}
// Example usage of the functions
$numbers = [1, 2, 3, 4, 5];
$sum = calculateSum($numbers);
echo "The sum of the array is: $sum<br>";
$text = "LuisLikesApples";
$reversedText = reverseString($text);
echo "Reversed text: $reversedText<br>";
$button = createButton("Hi I am a button (cant click me though)");
echo $button;
include("includes/footer.php");
?>