Hi,
echo "$title";
echo "$alttitle";Und das ist schlicht Unfug: Eine Stringvariable nochmal als alleinigen Inhalt in einen String einbetten? Wozu? Auch wenn das sehr oft gemacht wird, ergibt es nicht mehr Sinn.
Nein, hier wird nur der Zusatz-TEXT "$title" bzw. "$alttitle" ausgegeben, für Testzwecke, damit ich sehe, welchen Inhalt die Variablen haben.
Dann schreibe
echo $title;
echo $alttitle;
– und lass die blödsinnigen Anführungszeichen weg …
MfG ChrisB
--
Autocomplete has spoiled me to a point where it happens every so often that I encounter a CAPTCHA, and I just type in the first character … and then wait for the rest of the code to be automatically suggested :/
Autocomplete has spoiled me to a point where it happens every so often that I encounter a CAPTCHA, and I just type in the first character … and then wait for the rest of the code to be automatically suggested :/