Skip to content

Instantly share code, notes, and snippets.

@vrkansagara
Created September 8, 2015 16:04
Show Gist options
  • Save vrkansagara/24d8eb826957f4e3e2ec to your computer and use it in GitHub Desktop.
Save vrkansagara/24d8eb826957f4e3e2ec to your computer and use it in GitHub Desktop.
related to CI_Upload.php
<?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