hallo,
ich bin der totale Anfänger im Bereich PHP. So ich habe ein kleines Programm geschrieben.Es funkioniert alles ausser das Befehl echo. Ich habe auch nur ein "Hallo World" geschrieben und da funktioniert auch nicht. Da gibt er mir "echo "Hallo World";" aus. Und bei dem anderen kleinen Programm gibt er mir nichts aus.
was kann ich tun bzw. muss ich in php.ini etwas ändern? oder muss ich xampp installieren,ich habe es nähmlich nicht********
Und das andere Problem es funktioniert nur auf IE und nicht auf Firefox.
Hier ist das beispiel was ich habe:
html>
<head>
<title>Grussformulartext</title>
<body>
<form action = "erg.php" method="post"/>
<input type="text" name="feld1" />
<input type="text" name="feld2" />
<input type="submit" value="Addieren" />
</form>
<?php
echo "hahaha......";
?>
</body>
</head>
</html>
und
<html>
<head>
<title>Gruss</title>
<body>
<?php
$feld1 = $_POST["feld1"];
$feld2 = $_POST["feld2"];
$erg = feld1 + feld2;
echo "'$feld1'+'$feld1'='$erg'";
echo 'Siktir lan';
?>
<form action = "add.php" method="post"/>
<input type="submit" value="Neu berechnen" />
</form>
</body>
</head>
</html>
Danke im voraus.
ich bin der totale Anfänger im Bereich PHP. So ich habe ein kleines Programm geschrieben.Es funkioniert alles ausser das Befehl echo. Ich habe auch nur ein "Hallo World" geschrieben und da funktioniert auch nicht. Da gibt er mir "echo "Hallo World";" aus. Und bei dem anderen kleinen Programm gibt er mir nichts aus.
was kann ich tun bzw. muss ich in php.ini etwas ändern? oder muss ich xampp installieren,ich habe es nähmlich nicht********
Und das andere Problem es funktioniert nur auf IE und nicht auf Firefox.
Hier ist das beispiel was ich habe:
html>
<head>
<title>Grussformulartext</title>
<body>
<form action = "erg.php" method="post"/>
<input type="text" name="feld1" />
<input type="text" name="feld2" />
<input type="submit" value="Addieren" />
</form>
<?php
echo "hahaha......";
?>
</body>
</head>
</html>
und
<html>
<head>
<title>Gruss</title>
<body>
<?php
$feld1 = $_POST["feld1"];
$feld2 = $_POST["feld2"];
$erg = feld1 + feld2;
echo "'$feld1'+'$feld1'='$erg'";
echo 'Siktir lan';
?>
<form action = "add.php" method="post"/>
<input type="submit" value="Neu berechnen" />
</form>
</body>
</head>
</html>
Danke im voraus.