![]() |
exception inside a tag - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22) +--- Thread: exception inside a tag (/showthread.php?tid=41371) |
exception inside a tag - El Forum - 05-06-2011 [eluser]Unknown[/eluser] let see Code: <a href="<?= mylink ?>"> accidently i forgot to write "$" on before "mylink" error happen, but inside the <a > tag :down: any solution for this ? thanks exception inside a tag - El Forum - 05-06-2011 [eluser]darrentaytay[/eluser] What is the error? exception inside a tag - El Forum - 05-06-2011 [eluser]KarlBallard[/eluser] Code: <a href="<?php echo $my_link; ?>"> |