InterviewSolution
Saved Bookmarks
| 1. |
Write a program to swap two numbers using PHP. |
|
Answer» We have to use the bellow mentioned syntax to swap TWO number using PHP, with or without using the third variable. Example Without using third variable<?php ECHO "Before Swapping:"; <?php echo "Before Swapping:<br>"; |
|