Jump to content

Scott_S

Members
  • Posts

    40
  • Joined

  • Last visited

Everything posted by Scott_S

  1. What the heck is "EMO"?
  2. A: labeling line #142 would be helpful potentially check your "if" in your model. I think it should be: if($query->num_rows() > 0) { return $query->row(); }
  3. Xaotique is saying change span.logout a:link, a:visited {} to span.logout a:link, span.logout a:visited {}
  4. This should probably be moved to css board.
  5. I would think that onchange on the select element would be the way to go about this.
  6. I use CI, however I extended their model with MY_Model to do exactly that. If you like I can attach the source (if this board allows it). Also we're talking CRUD not ORM right?
  7. pure css answer http://css-tricks.com/functional-css-tabs-revisited/
  8. tag this as "solved" please
  9. You have several issues going on here that is preventing you from seeing your desired output (both in php and sql), not to mention that you should never deploy code like that out into the wild but for educational purposes running on your localhost it is fine. What do you want to see when you load the page dynamic.php Right now you should see three "click here" links followed by some text. Something like this: Click HereA1 is 1A2 is 1A3 is 1 Is this what you want to see?
  10. If you like what twitter is doing you could just get its bootstrap http://twitter.github.com/bootstrap/
  11. Absolutely! I find it imperative to think "mobile first". Keep HTML simple and as semantic as possible, let HTML be HTML and nothing more. HTML = Structure CSS = Presentation JS = Behavior The more you can keep these parts seperate the better off you will be. I think of it like MVC and having a high degree of SoC (Seperation of Concerns). Lastly, I also will create a sandbox for myself to test the site that I am buidling so I can view it under different dimensions simutaneously. The sandbox is nothing more then several iframes that contain the site at the dimensions I want to test.
  12. To handle the reshuffling of the vertical sequence, check out display: table-header-group, table-row-group and table-footer-group. Here is the link to w3c schools: http://www.w3schools.com/cssref/pr_class_display.asp Note: The values "inline-table", "table", "table-caption", "table-cell", "table-column", "table-column-group", "table-row", "table-row-group", and "inherit" are not supported in IE7 and earlier. IE8 requires a !DOCTYPE. IE9 supports the values.
  13. Scott_S

    Date

    http://php.net/manual/en/function.setlocale.php
  14. Wouldn't count($chars) be your n?
  15. Look at CI's Session Flashdata
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.