Last active
April 16, 2016 01:46
-
-
Save jlamim/f623cf3b9aaeb4ac2401a79815ca21d1 to your computer and use it in GitHub Desktop.
View Home - Tokens únicos com CodeIgniter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
<div> | |
<h1>Tokens únicos com CodeIgniter</h1> | |
</div> | |
<p><a href="<?=base_url('generate-token')?>" title="Clique aqui para gerar um token único">Clique aqui</a> para gerar um token único.</p> | |
<?php if($tokens): ?> | |
<h3>Outros tokens gerados</h3> | |
<ul> | |
<?php foreach($tokens as $tk): ?> | |
<li><?=$tk->token?></li> | |
<?php endforeach; ?> | |
</ul> | |
<?php endif; ?> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment