Moin,
dieser Beitrag könnte dich interessieren.
Beachte dabei den neueren Beitrag des Autors:
Zitat:
The incorrect statement is:
if (substr($comtext, -1, 1)==$commentchar && substr($comtext, -1, 1)!=$commentchar) {
Note that this is a logic error and the statement will never execute. It should have been written as:
if (substr($comtext, -1, 1)==$commentchar && substr($commenttext, -1, 1)!=$commentchar) {
Notice how in the corrected statement, the string passed to the second substr() function call is $commenttext and not $comtext.
PS: Ändere den Titel dann bitte so ab, dass du nach dem Lesen und Schreiben fragst.