<tr class='header'>
      <th> Service Shortener API   </th>
      <th> Short Url  </th>
      <th> Long Url  </th>
   </tr>
   <tr class='data'>
      <!-- Google API Shortener and expander result  -->
      <td> Google Shortener API   </td>
      <td> <?php 
    echo $googler->shorten($url_address);
    $short_address = $googler->shorten($url_address);
    ?>
 </td>
      <td> <?php 
    echo $googler->expand($short_address);
    ?>
  </td>
   </tr>
   <tr class='data'>
       <!-- Bitly API Shortener and expander result -->
      <td> Bitly Shortener API  </td>
      <td> <?php 
    echo $bitler->get_bitly_short_url();
    $short_address = $bitler->get_bitly_short_url();
    ?>
</td>
      <td><?php 
    echo $bitler->get_bitly_long_url($short_address);
    ?>
 </td>