Input
Output
<?php // Define two numbers $a = 10; $b = 20; // Display before swapping echo "Before swapping: a = $a, b = $b<br>"; // Swap using a temporary variable $temp = $a; $a = $b; $b = $temp; // Display after swapping echo "After swapping: a = $a, b = $b"; ?>