<?php
// Get the current timestamp
$timestamp = time();
// Display the timestamp
echo "Current Timestamp: " . $timestamp;
// Optionally, display the current date and time in a readable format
echo "<br>Current Date and Time: " . date("Y-m-d H:i:s", $timestamp);
?>
To embed this project on your website, copy the following code and paste it into your website's HTML: