In my php script, there is:
if (condition...blabla) {
something... bla... code...
while (condition) {
bla...
}
code...
}
and php says: "unexpected "}" on line...". But this } is the end of if(), isnīt it? I donīt know why there is an error! I have put the ";" everywhere where it has to be, Iīm sure.
When I leave the if() out, the sript works fine... can anyone help?
if (condition...blabla) {
something... bla... code...
while (condition) {
bla...
}
code...
}
and php says: "unexpected "}" on line...". But this } is the end of if(), isnīt it? I donīt know why there is an error! I have put the ";" everywhere where it has to be, Iīm sure.
When I leave the if() out, the sript works fine... can anyone help?
