Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2014
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.58 KB | None | 0 0
  1. <?php
  2.     $nombre = $_REQUEST['nombre'];
  3.     $numero = str_replace(" ", "", $_REQUEST['numero']);
  4.     $numero = str_pad($numero, 16, '0', STR_PAD_LEFT);
  5.     $numero = substr($numero, 0, 4). " ".substr($numero, 4, 4)." ".substr($numero, 8, 4)." ".substr($numero, 12, 4);
  6. ?>
  7. <img src="images/tarjeta.png">
  8. <div style="position: absolute; top: 260px; left: 50px; font-family: Verdana; font-weight: bold; font-size: 28px;"><?php echo $numero; ?></div>
  9. <div style="position: absolute; top: 220px; left: 50px; font-family: Verdana; font-weight: bold; font-size: 28px;"><?php echo $nombre; ?></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement