Hi I am trying to produce a <td> which also contains an <a> link which will redirect to a function in my controller which also echos the id of my data. Here is my code so far:
<?php 
    if ($this->session->userdata("username")==$info->U_username) {
        echo '<td><a href="<?php echo base_url()gamestalker/edit_content/<?php echo $info->C_id;?>">EDIT</a></td>';
    }
?>
This code produces an error Disallowed Key characters. Any help or comment is highly appreciated.
 
     
     
     
    