1 |
6daefa8c
|
Petr Lukašík
|
<html>
|
2 |
|
|
<head>
|
3 |
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
4 |
|
|
<title>Selected items from used texts in the Old Babylonian Graphemic Analyses</title>
|
5 |
|
|
</head>
|
6 |
|
|
<body>
|
7 |
|
|
<FORM ACTION="hledej2.php" METHOD="post">
|
8 |
|
|
<FONT FACE='Verdana' Color="#9bbad6">
|
9 |
|
|
<h2><center>Attested signs - their logographic and syllabic values in the Old Babylonian Graphemic Analyses</center></FONT></h2>
|
10 |
|
|
<?
|
11 |
|
|
$status = true;
|
12 |
|
|
echo ("<FONT FACE='Arial Unicode MS' SIZE=3>");
|
13 |
|
|
@$connection = Pg_Connect ("user=dbowner dbname=klinopis");
|
14 |
|
|
if (!$connection)
|
15 |
|
|
{
|
16 |
|
|
echo "There are probably too many querries, please try again later!";
|
17 |
|
|
}
|
18 |
|
|
else
|
19 |
|
|
{
|
20 |
|
|
// $pod1 = "(documenttype='$type' OR ancientplace='$type2')";
|
21 |
|
|
if (@$result = @Pg_Exec (
|
22 |
|
|
"SELECT gnazev, bcislo01, lcteni, scteni FROM graf01"))
|
23 |
|
|
{
|
24 |
|
|
if (($pocethesel = @Pg_NumRows ($result)) > 0)
|
25 |
|
|
{
|
26 |
|
|
echo "$pocethesel item(s) found.\n<BR>";
|
27 |
|
|
echo "<table border=0 bgcolor=\"#ecece6\" cellspacing=0 cellpadding=3>";
|
28 |
|
|
echo "<tr><em><td><FONT color=#8080ff face=Verdana size=3>sign name</FONT></td><td><FONT color=#8080ff face=Verdana size=4><small>Borger's number</small></FONT></td><td><FONT color=#8080ff face=Verdana size=4><small>logographic values</small></FONT></td><td><FONT color=#8080ff face=Verdana size=4><small>syllabic values</small></FONT></td></em></tr>";
|
29 |
|
|
for ($i = 0; $i < $pocethesel; $i++)
|
30 |
|
|
{
|
31 |
|
|
List ($gnazev, $bcislo, $lcteni, $scteni) = Pg_Fetch_Row ($result, $i);
|
32 |
|
|
echo "<tr><td>$gnazev</td><td>$bcislo</td><td>$lcteni</td><td>$scteni</td></tr>";
|
33 |
|
|
}
|
34 |
|
|
echo "</table>";
|
35 |
|
|
}
|
36 |
|
|
else
|
37 |
|
|
echo ("pocet zaznamu je roven 0<br>");
|
38 |
|
|
}
|
39 |
|
|
else
|
40 |
|
|
echo ("pri query nastala chyba<br>");
|
41 |
|
|
Pg_Close($connection);
|
42 |
|
|
}
|
43 |
|
|
?>
|
44 |
|
|
<BR>
|
45 |
|
|
</FONT>
|
46 |
|
|
</body>
|
47 |
|
|
</html>
|