Git commit e8ec87955cf5e4e355986959ea3ed8693ee102cb by Chris Howells. Committed on 19/10/2006 at 12:48. Pushed by whiting into branch 'master'. go away D +0 -61 banking/admin.php D +0 -38 banking/authorise.inc D +0 -58 banking/common.inc D +0 -73 banking/edit.php D +0 -195 banking/index.php D +0 -64 banking/submit.php http://commits.kde.org/websites/konqueror-org/e8ec87955cf5e4e355986959ea3ed= 8693ee102cb diff --git a/banking/admin.php b/banking/admin.php deleted file mode 100644 index 2af2fb0..0000000 --- a/banking/admin.php +++ /dev/null @@ -1,61 +0,0 @@ - - - -" . $row['country'] . " - " . $row['name'] . ""; -?> - - -
" method=3D"POST"> - - - - - - - - - - - - - - -
-Name - -" /> -
-Url - -" /> -
-Comment - - -
- -
- - diff --git a/banking/authorise.inc b/banking/authorise.inc deleted file mode 100644 index bea84d7..0000000 --- a/banking/authorise.inc +++ /dev/null @@ -1,38 +0,0 @@ - diff --git a/banking/common.inc b/banking/common.inc deleted file mode 100644 index 5533d7c..0000000 --- a/banking/common.inc +++ /dev/null @@ -1,58 +0,0 @@ - diff --git a/banking/edit.php b/banking/edit.php deleted file mode 100644 index 22cd93e..0000000 --- a/banking/edit.php +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - -

Replace the following details...

- -\n"; - echo "\n

Bank

\n

Comment\n

KDE 3.0

\n

KDE 3.1

\n

KDE 3= .2

\n\n"; - $sql =3D "SELECT banks.id, banks.country, banks.url, banks.name, compat.c= omment, compat.kde30, compat.kde31, compat.kde32 FROM banks, compat WHERE b= anks.id =3D '$selected' AND compat.bank =3D '$selected'"; - $query =3D mysql_query($sql); - $row =3D mysql_fetch_array($query); - echo "\n"; - echo "" . stripslas= hes($row['name']) . "\n"; - echo "" . stripslashes($row['comment']) . "\n"; - echo "" . parseCompat($row['kde30']) . "\n"; - echo "" . parseCompat($row['kde31']) . "\n"; - echo "" . parseCompat($row['kde32']) . "\n"; - echo "\n"; - echo "\n"; -?> - -

...with the new details

- -
- - -" />
- -"/>
- -
- -
- -
- -
- -
- -
- - - diff --git a/banking/index.php b/banking/index.php deleted file mode 100644 index eff572e..0000000 --- a/banking/index.php +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - -

Country Selection

- -
" method=3D"GET"> - - -
- -

If your country is not listed in the above list please use the form bel= ow to submit details.

- -

Statistics

- - - - - - - - - - - - - - - - - - - - - - -
-Version - -Does not work - -UA change - -Works mostly - -Works perfectly -
-Konqueror 3. - - - - - - - - -
- - - -"; - $sql =3D ""; - if ($selected =3D=3D "all") - { - $sql =3D "SELECT DISTINCT country FROM banks ORDER BY country"; - } - else - { - $sql =3D "SELECT DISTINCT country FROM banks WHERE country =3D '$selecte= d'"; - } - $query =3D mysql_query($sql); - $num =3D mysql_num_rows($query); - - if ($num =3D=3D 0) - { - echo "

No banks known for selected country.

"; - } - while ($row =3D mysql_fetch_array($query)) - { - $country =3D $row['country']; - echo "

" . country($row['country']) . "

<= /td>\n"; - echo "\n

Bank

\n

Comment\n

KDE 3.0

\n

KDE 3.1

\n

KDE = 3.2

\n

Edit

\n\n"; - $sql2 =3D "SELECT banks.id, banks.country, banks.url, banks.name, compat= .comment, compat.kde30, compat.kde31, compat.kde32 FROM banks, compat WHERE= banks.id =3D compat.bank AND country =3D '$country' ORDER BY banks.name"; - $query2 =3D mysql_query($sql2); - $alternate =3D false; - while($row2 =3D mysql_fetch_array($query2)) - { - $alternate =3D !$alternate; - if ($alternate) - { - $color =3D "newsbox2"; - } - else - { - $color =3D "newsbox1"; - } - echo "\n"; - echo "" . strips= lashes($row2['name']) . "\n"; - echo "" . stripslashes($row2['comment']) . "\n"; - echo "" . parseCompat($row2['kde30']) . "\n"; - echo "" . parseCompat($row2['kde31']) . "\n"; - echo "" . parseCompat($row2['kde32']) . "\n"; - echo "Edit= \n"; - echo "\n"; - } - } - echo "\n"; -?> - - - -

Add New Entry

- -
- - -
- -
- -
- -
- -
- -