Zdravím... Mám taký problém z úlohou číslo 22 kde podľa mňa urobím všetko bezchybne a úloha nechce ísť... Problém spočíva v kalkulačke v ktorej source code vyzerá takto Kalk_1:
<?php
include "funkcie.php";
head();
echo "<title>kalkulacka</title>";
menu();
sub_xhtml();
?>
<h1>Kalkulačka</h1>
<hr />
<form action="kalk_2.php" method="post">
<table>
<tr>
<td width="120" class="hidden">zadajte 1. číslo:</td>
<td width="100"><input type="text" name="cislo1" class="text_pole" size="6" /></td>
</tr>
<tr>
<td width="120">zadajte 2. číslo:</td>
<td width="100"><input type="text" name="cislo2" class="text_pole" size="6" /></td>
</tr>
<tr>
<td width="120"></td>
<td width="100"><input type="submit" value="spracovať" /></td>
</tr>
</table>
</form>
Kalk_2 vyzerá takto:
<?php
include "funkcie.php";
head();
echo "<title>prikazy cyklu</title>";
menu();
sub_xhtml();
?>
<h1>Kalkulačka</h1>
<hr />
<?php
$cislo1=$HTTP_POST_VARS[cislo1];
$cislo2=$HTTP_POST_VARS[cislo2];
$sucet=$cislo1+$cislo2;
$rozdiel=$cislo1-$cislo2;
$sucin=$cislo1*$cislo2;
$podiel=$cislo1/$cislo2;
$zvysok=$cislo1%$cislo2;
//zobrazenie vysledku
echo "<p class='nadpis'>Boli zadane následujúce vstupné hodnoty: ".$cislo1." a ".$cislo2."</p>";
?>
<table>
<tr>
<th align="center" width="150">Popis operácie</th>
<th align="center" width="150">Príklad</th>
<th align="center" width="150">Výsledok</th>
</tr>
<tr>
<th height="40">súčet čísiel</th>
<th height="40"><?php echo $cislo1." + ".$cislo2; ?></th>
<th height="40"><?php echo $sucet; ?></th>
</tr>
<tr>
<th height="40">rozdiel čísiel</th>
<th height="40"><?php echo $cislo1." - ".$cislo2; ?></th>
<th height="40"><?php echo $rozdiel; ?></th>
</tr>
<tr>
<th height="40">sučin čísiel</th>
<th height="40"><?php echo $cislo1." * ".$cislo2; ?></th>
<th height="40"><?php echo $sucin; ?></th>
</tr>
<tr>
<th height="40">podiel čísiel</th>
<th height="40"><?php echo $cislo1." / ".$cislo2; ?></th>
<th height="40"><?php echo $podiel; ?></th>
</tr>
<tr>
<th height="40">zbytok po delení</th>
<th height="40"><?php echo $cislo1." % ".$cislo2; ?></th>
<th height="40"><?php echo $zvysok; ?></th>
</tr>
</table>
<form action="kalk_1.php" method="post">
<center><input type="submit" value="zadať nové čísla"/></center>
</form>
Ak by ste chceli vydieť ako vyzerá tá chyba (do Kalk_2 nenačíta premenné) tak kliknite sem zadajte premenné(čísla) a kukajte čo to robí... http://cbnk.6f.sk/kalk_1.php
Za vyriešenie problému vopred ďakujem...