X-Git-Url: https://disinclined.org/git/?a=blobdiff_plain;f=index.php;h=bf2249bfd14920d5550c47184bd62ba7bcd57499;hb=60e2ac52bbf649d4b04f91bc731672a94c4373a8;hp=8245ec2c3ac344a3ee4f0cc92ba270d8af8d13ac;hpb=e02661a0816878edab7927b3573408999f32cd48;p=dylansserver.git diff --git a/index.php b/index.php index 8245ec2..bf2249b 100644 --- a/index.php +++ b/index.php @@ -13,10 +13,10 @@ abstract class cms { public function __construct() { $config = parse_ini_file($this->config_file, true); $this->db = new mysqli( - $config[database]['domain'], - $config[database]['user'], - $config[database]['password'], - $config[database]['database']); + $config['database']['domain'], + $config['database']['user'], + $config['database']['password'], + $config['database']['database']); if (mysqli_connect_errno()) { echo "Problem connecting to database: "; echo mysqli_connect_error(); @@ -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
  • "; @@ -243,8 +250,8 @@ class page extends cms { $this->scripts = " - - + + - - + + "; } @@ -435,8 +442,8 @@ class note extends cms { // and a default author needs to be set // for no-javascript users. $stmt->bind_param('sss', - htmlspecialchars($_POST['name']), - htmlspecialchars($_POST['text']), + $_POST['name'], + $_POST['text'], $this->id); $stmt->execute(); } @@ -491,7 +498,7 @@ END_OF_NAVIGATION; $date_posted = $entry['date_posted']; $author = $entry['author']; $text = htmlspecialchars($entry['text']); - $head = "

    $author

    "; + $head = "

    " . htmlspecialchars($author) . "

    "; echo << $head @@ -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, '.'); @@ -751,6 +758,7 @@ switch (cms::determine_type()) { case "rss": $rss = new rss(); $rss->display(); + break; case 'archive': $archive = new archive; $archive->display();