*projekthilfe*
<?=$_request
Einklappen
X
-
Vielen Dank... komme aber leider nicht wirklich weiter...
Hast du die ini_set() Anweisung jetzt mal zu aller oberst in Euren Code gesetzt? (sollte wirklich die erste Zeile des Codes sein)
Und es hat nicht gefunzt? Irgendwie beschleicht mich das Gefühl, dass du was falsch gemacht hast.Gutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten
[color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)
Kommentar
-
In welches File?
Ins php.ini oder kuanmeldung.php?Gutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten
[color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)
Kommentar
-
Entweder passt du deinen Code an wie Chris schon sagte oder du packst deine ini Anweisung in PHP-Tags
PHP-Code:<?php
ini_set('asp_tags','1');
?>Gutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten
[color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)
Kommentar
-
So um das zu beenden ich habs mir mal angesehen und du hast da einfach 2 zeichen vergessen einmal das " und einmal das > zeichen
Ersetzte einfach die Zeile 248 in Kuanmeldung durch das hier
PHP-Code:<input name=kurs size=80 value="<?=$_REQUEST["kurs"]?>">
Mfg Splasch
Kommentar
-
Dann wird das ganze auch wieder funktionieren.
Also die ASP Tags sind auf dem PHP Info auf OFF
tobiGutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten
[color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)
Kommentar
-
Ich würde in kuanmeldung.php die Zeile
<input name=kurs size=80 value=<?=$_REQUEST["kurs"]?> (Zeile 248)
gegen
<input name=kurs size=80 value="<?php echo $_REQUEST["kurs"]; ?>"
austauschen. Wenn die gesamte Anwendung allerdings ASP-Tags verwendet bleibt dir wohl nur die vorgeschlagene Lösung übrig oder du ersetzt alle <? durch <?php
Kommentar
Kommentar