What are some ways to redirect to a different URL in PHP, specifically from within the body section of a script?

To redirect to a different URL in PHP from within the body section of a script, you can use the header() function with the Location parameter set to the desired URL. This will send a raw HTTP header to the browser, instructing it to redirect to the specified URL.

<?php
// Redirect to a different URL
header("Location: http://www.example.com");
exit;
?>