Can anyone explain what a line like this means?
<A HREF="<?= $sess->url("news/add.php") ?>">Add Story</A>
I really have no idea what the "->" operator does....
THANKS IN ADVANCE
//html code <A HREF="Putphpcode here">Add Story</A>
//php code <A HREF="<?= $sess->url("news/add.php") ?>">Add Story</A> // <? $sess->url("news/add.php") ?>
Originally posted by Brown I really have no idea what the "->" operator does....
It's the class property/method reference. http://www.php.net/manual/en/language.oop.php
THANKS FOR THE CLARIFICATION !!