Skip to content

Commit

Permalink
Change view css and javascript linked file to reflect the new folder …
Browse files Browse the repository at this point in the history
…structure
  • Loading branch information
robotys committed May 11, 2012
1 parent 6ccb7ef commit 8357fd6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,5 @@ How to use this Repo
This repo contains Codeigniter with some example files in it to simulate the requirement stated above. Click and view the file you interested with and try to understand it. Comments are generously sprinkled to assist. Brief explaination will be provided afterwards.

Now, the time to do the codes!

Nope, not yet. Firstly need to config some stuff in CI (yah, we love CodeIgniter so much we give it nickname. Heck, CI is better than Honey or worse, Bieber....). By default CI doesn`t connect to any database and will have the "welcome" app as default app. So, the first step is to make a mysql table and config CI to be able to talk/connect with it. Create table in MySQL in your favourite tools (PHPMyAdmin for you) with the name
6 changes: 3 additions & 3 deletions application/views/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<meta name="description" content="">
<meta name="author" content="">

<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="<?php echo base_url()?>/assets/css/bootstrap.css" rel="stylesheet">
<link href="<?php echo base_url()?>/assets/css/style.css" rel="stylesheet">

<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
Expand Down Expand Up @@ -107,6 +107,6 @@
</footer>
<!-- JS -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="<?php echo base_url()?>/assets/js/bootstrap.min.js"></script>
</body>
</html>

0 comments on commit 8357fd6

Please sign in to comment.