PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
Moderator: General Moderators
melchor_06
Forum Newbie
Posts: 13 Joined: Wed Feb 11, 2009 3:58 am
Post
by melchor_06 » Fri Feb 20, 2009 2:44 am
i need help guys.
i need to know how can i make an anchor name not the actual link name.
it's like this:
Code: Select all
<?php echo anchor('DeleteController/deletethis/'.$this->uri->segment(3)); ?>
i need to put the "delete" text only rather than showing the link.
thanks...
melchor_06
Forum Newbie
Posts: 13 Joined: Wed Feb 11, 2009 3:58 am
Post
by melchor_06 » Fri Feb 20, 2009 5:09 am
i found the answer guys.
Code: Select all
<?php echo anchor('DeleteController/deletethis/'.$this->uri->segment(3)),"delete"; ?>