Created
September 8, 2015 16:04
-
-
Save vrkansagara/24d8eb826957f4e3e2ec to your computer and use it in GitHub Desktop.
related to CI_Upload.php
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
<?php | |
/** | |
* Created by PhpStorm. | |
* User: vallabh | |
* Date: 08/09/15 | |
* Time: 17:33 | |
*/ | |
?> | |
<html> | |
<head> | |
<title>Upload Form</title> | |
</head> | |
<body> | |
<h3>Your file was successfully uploaded!</h3> | |
<ul> | |
<?php foreach ($upload_data as $item => $value): ?> | |
<li><?php echo $item; ?>: <?php echo $value; ?></li> | |
<?php endforeach; ?> | |
</ul> | |
<p><?php echo anchor('test', 'Upload Another File!'); ?></p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment