index.php
author viric@vicerveza
Thu, 18 May 2006 23:47:03 +0200
changeset 0 c270c8b5ddea
permissions -rw-r--r--
Initial release. Usable.

<?php
/***** Informació de LOCALE *****/
echo setlocale(LC_ALL, 'ca_XX');
$textdomain = "butxaques";
bindtextdomain($textdomain, "./locale");
textdomain($textdomain);
bind_textdomain_codeset($textdomain, "utf-8");
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html>
<head>
<title><?php echo _("Control de butxaques") . " - " . _("Nou ingrés/despesa");?></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>

<body>
<?php
echo "<h1 align=center>" . _("Control de butxaques") . "</h1>\n";
echo "<h2" . _("Nou ingrés/despesa") . "</h1>\n";
?>
<center>
<table border=1>
<tr>
	<th><?php echo _("Ingressos/Despeses") ?>
	<th><?php echo _("Moviments entre butxaques") ?>
	<th><?php echo _("Butxaques") ?>
<tr>
	<td align=center><a href="update-ingres"><?php
		echo _("Nou Ingrés/Despesa") ?></a>
	<td align=center><a href="update-moviment"><?php
		echo _("Nou Moviment") ?></a>
	<td align=center><a href="update-butxaca"><?php
		echo _("Nova Butxaca") ?></a>
<tr>
	<td align=center><a href="llista-ingressos"><?php
		echo _("Llista d'Ingressos/Despeses") ?></a>
	<td align=center><a href="llista-moviments"><?php
		echo _("Llista de Moviments") ?></a>
	<td align=center><a href="llista-butxaques"><?php
		echo _("Llista de Butxaques") ?></a>
<tr>
	<td align=center COLSPAN=3><a href="status-butxaques"><?php
		echo _("Estat de les butxaques") ?></a>
</table>
</center>


</body>
</html>