forked from matthijsmelissen/qif-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
67 lines (59 loc) · 2.85 KB
/
Copy pathindex.php
File metadata and controls
67 lines (59 loc) · 2.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" media="screen" type="text/css" href="style.css" />
<title>Conversion from CSV to QIF</title>
</head>
<body>
<h1>Conversion from CSV to QIF</h1>
This page helps importing financial data into bookkeeping software. To be more precise, it
converts CSV-files (which you can obtain by downloading your financial data from your bank's website) to QIF-files,
which can be imported into bookkeeping software.
<p>Currently it works for the following banks:</p>
<ul>
<li>Spardabank (Germany)</li>
<li>ABN AMRO (Nederland)</li>
<li>ING (Nederland)</li>
<li>Rabobank (Nederland)</li>
<li>Spuerkees / BCEE (Banque et Caisse d'Epargne de l'Etat) (Luxembourg)</li>
</ul>
<p>The resulting QIF files are suitable for import in GnuCash and Microsoft Money, amongst others.</p>
<form method="post" enctype="multipart/form-data" action="<?php echo (isset($_GET['test']))?'test_':''?>convert.php">
<table>
<tr>
<label>
<td>Upload CSV</td>
<td><input type="file" name="csv" /></label></td>
</tr>
<tr>
<label>
<td>Bank</td>
<td>
<select name="bank">
<option value="spardabank">Spardabank</option>
<option value="abnamro">ABN Amro</option>
<option value="ing">ING</option>
<option value="rabobank">Rabobank</option>
<option value="bcee">BCEE</option>
</select>
</td>
</label>
</tr>
<tr>
<td> </td>
<td>
<input type="submit" value="Submit" />
</td>
</tr>
</table>
</form>
<p>This tool is still in testing phase. Please check manually if the file has been converted correctly.
If you find a problem or have any further questions, please contact me at
<a href="mailto:qif@matthijsmelissen.nl">qif@matthijsmelissen.nl</a>.
</p>
<p>This tool is written by Matthijs Melissen and published under a
<a href="http://creativecommons.org/publicdomain/zero/1.0/">CC-0</a> license.
Download the <a href="https://github.com/math1985/qif-converter">source code on Github</a>.
</p>
</body>
</html>