1 |
6daefa8c
|
Petr Lukašík
|
<HTML>
|
2 |
|
|
<HEAD>
|
3 |
|
|
<META content=text/html;charset=utf-8 http-equiv=Content-Type>
|
4 |
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">
|
5 |
|
|
<TITLE>List of OB signs in the scope of OB Graphemic Analyses Project</TITLE>
|
6 |
|
|
</HEAD>
|
7 |
|
|
<BODY>
|
8 |
|
|
|
9 |
|
|
<h2><center><strong><u> List of OB cuneiform signs with readings</u></strong></center></h2>
|
10 |
|
|
<br>
|
11 |
|
|
<?
|
12 |
|
|
@$spojeni = Pg_Connect("user=dbowner dbname=klinopis");
|
13 |
|
|
if (! $spojeni)
|
14 |
|
|
{
|
15 |
|
|
echo ("<br>Nepodarilo se pripojit k datab?zi.<BR>\n");
|
16 |
|
|
exit;
|
17 |
|
|
}
|
18 |
|
|
?>
|
19 |
|
|
|
20 |
|
|
<FONT FACE='Arial Unicode' SIZE=3><BR>
|
21 |
|
|
<table border=1>
|
22 |
|
|
<tr>
|
23 |
|
|
<td><center><strong> our no.
|
24 |
|
|
</font></strong></center></td>
|
25 |
|
|
<td><center><strong> sign name
|
26 |
|
|
</font></strong></center></td>
|
27 |
|
|
<td><center><strong> Borger's no.
|
28 |
|
|
</font></strong></center></td>
|
29 |
|
|
<td><center><strong> syllabic value
|
30 |
|
|
</font></strong></center></td>
|
31 |
|
|
<td><center><strong> logographic value
|
32 |
|
|
</font></strong></center></td>
|
33 |
|
|
</tr>
|
34 |
|
|
</FONT>
|
35 |
|
|
<?
|
36 |
|
|
$polozky="pcislo, gnazev, bcislo, scteni, lcteni";
|
37 |
|
|
$vysledek = Pg_Exec ($spojeni, "SELECT $polozky FROM graf01 ORDER BY pcislo");
|
38 |
|
|
$pocet = Pg_NumRows ($vysledek);
|
39 |
|
|
|
40 |
|
|
for ($i=0; $i < $pocet; $i++)
|
41 |
|
|
{
|
42 |
|
|
list ($pcislo, $gnazev, $bcislo, $scteni, $lcteni) = Pg_Fetch_Array ($vysledek, $i);
|
43 |
|
|
echo ("<tr><center><td> $pcislo </td>".
|
44 |
|
|
"<td> $gnazev </td>".
|
45 |
|
|
"<td> $bcislo </td>".
|
46 |
|
|
"<td> $scteni </td>".
|
47 |
|
|
"<td> $lcteni </td>"."
|
48 |
|
|
<td> <a href=\"./tools/novadata/graf01d.php\">delete</a> </td>"."
|
49 |
|
|
</tr>\n");
|
50 |
|
|
}
|
51 |
|
|
Pg_FreeResult ($vysledek);
|
52 |
|
|
Pg_Close ($spojeni);
|
53 |
|
|
?>
|
54 |
|
|
|
55 |
|
|
</table>
|
56 |
|
|
<br>
|
57 |
|
|
</FONT>
|
58 |
|
|
</BODY>
|
59 |
|
|
</HTML>
|