Forum Moderators: coopster
echo('<p>'.'<a href="' . $linkurl . '">' . $linktitle . '</a>'.'</p>');
}
just the one line i dont quite get, i know what it does but why its strutured that way i dont know?
echo('<p>' (i understand)
. (i dont understand)
'<a href="' (i understand)
. $linkurl . ' (i dont understand)
in short i dont really understand the need for the "."'s
why do i have to put a "." in between statements,
im sure its plainly obvious!
Thanks
in short i dont really understand the need for the "."'s
why do i have to put a "." in between statements
This is a very strange structure and you don't need to do it. See the manual on string types. [php.net]