<?php
$old_string = "\t  I am a teacher!  \n";
$new_string = trim($old_string);
var_dump($old_string);
echo "<br/>";
var_dump($new_string);
?>
