Recent content by Nisovin

  1. N

    HTML/CSS Layout Help Please?

    The float CSS modifier does not do what you seem to think it does. Your problem here is that you're nesting all of your divs, so the innermost one is going to sit at the top of its parent, no matter what. Your best option is to made the two divs side by side in the markup, like so: <div...
  2. N

    PHP Help need to limit the body text?

    $body = $row['body']; if (strlen($body) > 150) $body = substr($body,0,150) . "...";
  3. N

    PHP Help need to limit the body text?

    $body = $row['body']; if (strlen($body) > 150) $body = substr($body,0,150) . "...";
  4. N

    Can you make a flash game with Notepad?

    No, you must have a copy of Adobe Flash to create a Flash game. Tutorials can be found all over the internet.
  5. N

    How do I make a set of code run every ten minutes in PHP?

    In order to have a script run without user interaction, you must have access to the server to set up a cronjob, or other similar functionality. This can't be done with a normal PHP script that generates a web page. You could simulate this by storing a time stamp in a table of the last run of...
Back
Top