anchor name?

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

Post Reply
melchor_06
Forum Newbie
Posts: 13
Joined: Wed Feb 11, 2009 3:58 am

anchor name?

Post by melchor_06 »

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

Re: anchor name?

Post by melchor_06 »

i found the answer guys.

Code: Select all

<?php echo anchor('DeleteController/deletethis/'.$this->uri->segment(3)),"delete"; ?>
Post Reply