Last active
April 23, 2017 00:05
-
-
Save valdiney/0fc508a2e54d516cd5792772e166cd40 to your computer and use it in GitHub Desktop.
html_sortable
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
<ul id="my_sortable"> | |
<?php foreach ($perguntas as $pergunta):?> | |
<li id="<?php echo $pergunta->id;?>"> | |
<?php echo $pergunta->nome;?> | |
</li> | |
<?php endif;?> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment