<?php

// your code goes here

$text=  "Transportation
Accommodation";

$exploded =  explode(PHP_EOL,$text);

echo "<ul>" . PHP_EOL;
foreach ($exploded as $line) {

echo "<li>" . $line . "</li>" . PHP_EOL; 

}

echo "</ul>" . PHP_EOL;