PageRenderTime 26ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 0ms

/BMTmobile-master/application/views/backup/uploadsView.php

https://gitlab.com/webservers/codeigniter_mobile_dev_server
PHP | 55 lines | 48 code | 3 blank | 4 comment | 5 complexity | 01899a628807dd493da34482491e88d8 MD5 | raw file
  1. <?php
  2. //include_once('templates/default/jqHeader.php');
  3. include_once('templates/artisteer/header.php');
  4. //include_once('templates/artisteer/jQuery.php'); //automatically included in header
  5. ?>
  6. <!-- URLS
  7. http://localhost/phoneGap/index.php/Log/jsonAccess/LogsBySessionsActivity/
  8. http://localhost/phoneGap/index.php/UI/JSONviewer/ only the json viewere code, including the script tag
  9. http://localhost/phoneGap/index.php/Log/jsonAccess/
  10. http://localhost/phoneGap/index.php/Log/jsonLog/
  11. http://localhost/phoneGap/index.php/Log/gCrudAccess/
  12. http://localhost/phoneGap/index.php/Log/gCrudLog/
  13. /phoneGap/index.php/Log/clear/
  14. http://localhost/phoneGap/index.php/UI/
  15. -->
  16. <div class="topNav">
  17. <a href="/index.php/Log/gCrudAccess/" target="_blank">Access</a>
  18. <a href="/index.php/Log/gCrudLog/" target="_blank">Log</a>
  19. <a href="javascript:void(0)" onclick="clearLogs()">Ajax Clear</a>
  20. <a href="javascript:void(0)" onclick="createTestLogs()">Create Test Logs</a>
  21. </div>
  22. <br />
  23. <br />
  24. <div class="leftNav">
  25. <div id="ActiveSessions" class="LogViewBox">
  26. <?php
  27. echo '1234<div style="color: #FF0000; padding:5px;">';
  28. if( isset($error) && is_array($error) ){
  29. foreach ($error as $key => $value) {
  30. echo '<br /><h2>'.$key.':</h2>'.$value;
  31. }
  32. }
  33. else if (isset($error) && is_string($error)) echo $error;
  34. echo form_open_multipart('upload/graphicUpload');
  35. echo '<br /><input type="file" name="'.$fileTagNameID.'" size="20" />';
  36. echo '<br /><br /><input type="submit" value="upload" /></form>';
  37. echo '</div>';
  38. ?>
  39. </div>
  40. <br /><div id="tn_box" class="ThumbViewBox"></div>
  41. </div>
  42. <div class="content" id="content">
  43. <div id="zoom_box"></div>
  44. <div id="LogView" class="LogViewBox"></div>
  45. </div>
  46. <script type="text/javascript">
  47. //$(function(){ getGraphics(); });
  48. </script>
  49. <?php
  50. //include_once('templates/default/footer.php');
  51. include_once('templates/artisteer/footer.php');
  52. ?>