Changeset 3


Ignore:
Timestamp:
Nov 26, 2008, 8:17:28 PM (15 years ago)
Author:
maron
Message:
 
Files:
2 added
5 edited

Legend:

Unmodified
Added
Removed
  • /

    • Property svn:ignore set to
      config.php
  • frontend.php

    r2 r3  
    1010        }
    1111       
     12        function show_mass() {
     13                global $database;
     14                $Query = $database->select('mass', '*');
     15              while($DbRow = $Query->fetch_array())
     16                {
     17                        echo '<div id="article"><b>'.$DbRow['time'].'</b>  '.$DbRow['text'].'</div>';
     18                }
     19        }
    1220?>
  • global.php

    r2 r3  
    5353                <div>
    5454                <span class="left"><a href="http://alexandrejoseph.com/">Designed by Alexandre Joseph</a></span>
    55                 &copy; www.yoursite.com
     55                &copy; '.FOOD_TEXT.'
    5656                </div>
    5757
  • index.php

    r2 r3  
    1616        } else if (array_key_exists('rozpis',$_GET)) {
    1717                echo ROZPIS;
     18                show_mass();
    1819                show_article(3);
    1920
  • language_cz.php

    r2 r3  
    2525define('HEADPAGE', '<h2>Hlavní strana webu farnosti Zděchov</h2>
    2626                        <p> Aktuality:</p>');
    27 define('ADMIN', '<h2>Administrace stránek</h2><p>Přihlášení:</p>');
     27define('ADMIN', '<h2>Administrace stránek</h2>');
    2828
    2929?>
Note: See TracChangeset for help on using the changeset viewer.