Guest User

Untitled

a guest
Jul 11th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. public function WyswietlPrzycisk($szerokosc, $nazwa, $url, $active = true)
  2. {
  3. if($active)
  4. {
  5. echo "<td width = '".htmlentities($szerokosc)."%'>
  6. <a href = '".htmlentities($url)."'>
  7. <img src = 'm-logo.gif' alt = '".htmlentities($nazwa)."' border = '0'></a>
  8. <a href = '".htmlentities($url)."'><span class='menu'>$nazwa</span></a></td>";
  9. }
  10. else
  11. {
  12. echo "<td width = '".htmlentities($szerokosc)."%'>
  13. <img src = 'boczne-logo.gif'>
  14. <span class='menu'>$nazwa</span></td>";
  15. }
  16. }
Add Comment
Please, Sign In to add comment