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 |
|
|
if (@$result = @Pg_Exec (
|
21 |
|
|
"SELECT * FROM abtexts"))
|
22 |
|
|
{
|
23 |
|
|
if (($pocethesel = @Pg_NumRows ($result)) > 0)
|
24 |
|
|
{
|
25 |
|
|
echo "$pocethesel item(s) found.\n<BR>";
|
26 |
|
|
echo "<table border=0 bgcolor=\"#ecece6\" cellspacing=0 cellpadding=3>";
|
27 |
|
|
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>";
|
28 |
|
|
for ($i = 0; $i < $pocethesel; $i++)
|
29 |
|
|
{
|
30 |
|
|
List ($bookandchapter, $paragraph, $transliteration) = Pg_Fetch_Row ($result, $i);
|
31 |
|
|
echo "<tr><td>$bookandchapter</td><td>$paragraph</td><td><FONT FACE=\"Atial Unicode MS\">$transliteration</FONT></td></tr>";
|
32 |
|
|
}
|
33 |
|
|
echo "</table>";
|
34 |
|
|
}
|
35 |
|
|
else
|
36 |
|
|
echo ("pocet zaznamu je roven 0<br>");
|
37 |
|
|
}
|
38 |
|
|
else
|
39 |
|
|
echo ("pri query nastala chyba<br>");
|
40 |
|
|
Pg_Close($connection);
|
41 |
|
|
}
|
42 |
|
|
?>
|
43 |
|
|
<BR>
|
44 |
|
|
</FONT>
|
45 |
|
|
</body>
|
46 |
|
|
</html>
|