'; print("Before sorting"); print_r($arr); $arr = bubble_sort($arr); print("After sorting by using Bubble sort"); print_r($arr); ?>