X-Git-Url: https://disinclined.org/git/?a=blobdiff_plain;f=index.php;h=a0cae2f41b7d763b1bdc38a8b9d6aa9dfc08915a;hb=7486ea5bf3d89cd7662a51bb05c16f5f6d96105c;hp=485b0636a59ee2653844391c2ebac0df3e0f87da;hpb=0dfc2131cfbc276e02d1d5e33a76750775b6aaf9;p=dylansserver.git diff --git a/index.php b/index.php index 485b063..a0cae2f 100644 --- a/index.php +++ b/index.php @@ -163,7 +163,7 @@ class index extends cms {
  • git://dylansserver.com
  • + "/git/">git://dylansserver.com
  • some notes:

    @@ -172,6 +172,13 @@ class index extends cms {
  • here [rss]
  • +
  • +

    my resume:

    +
  • + +
  • [pdf]
  • +
  • OTHER_PROJECTS; @@ -187,7 +194,7 @@ OTHER_PROJECTS; protected function display_exhibits() { echo "
    "; - $sql = "SELECT text FROM projects"; + $sql = "SELECT text FROM projects ORDER BY rank"; $result = $this->db->query($sql); while ($entry = $result->fetch_object()) { echo $entry->text; @@ -201,7 +208,7 @@ OTHER_PROJECTS;

    my projects:

    HEREDOC; - $sql = "SELECT title FROM projects"; + $sql = "SELECT title FROM projects ORDER BY rank"; $result = $this->db->query($sql); while ($entry = $result->fetch_object()) { echo "
  • $entry->title
  • "; @@ -666,15 +673,15 @@ class rss extends cms { echo << - dylanstestserver.com/notes/rss - http://dylanstestserver.com/notes - dylanstestserver.com/notes/rss - + dylansserver.com/notes/rss + http://dylansserver.com/notes + dylansserver.com/notes/rss + END_OF_ENTRY; while ($entry = $result->fetch_object()) { $title = $entry->title; $date_posted = $entry->date_posted; - $url = "http://dylanstestserver.com/note/" . $entry->url; + $url = "http://dylansserver.com/note/" . $entry->url; $text = $entry->text; $text = strip_tags($text); $end_of_first_sentence = strpos($text, '.');