echo '<tr class="class_row">';
echo '<td>';
echo $this->Html->link($post['Post']['title'],
array('controller'=>'posts','action'=>'view',$post['Post']['id']),
array('id'=>'id_anchor_title','class'=>'class_anchor_title') );
echo '<h6><i>'.$this->Time->format('d-M-Y',strtotime($post['Post']['created'])).'</i></h6>';
echo '<br/>';
$last_paragraph=$post['Post']['body'];
$length = strlen($last_paragraph);
echo $this->Text->truncate($last_paragraph,150,array('ending' => '...','exact' => false));
echo '<br/>';
//echo debug($last_paragraph);
if($length > 151){
echo $this->Html->link('more',
array('controller'=>'posts','action'=>'view',$post['Post']['id']),
array('id'=>'id_anchor_more','class'=>'class_anchor_more') );
}
echo '</td>';
echo '<td>'.$this->Html->link('Edit',
array('controller'=>'posts','action'=>'edit',$post['Post']['id']) ).'</td>';
echo '<td>'.$this->Html->link('Delete',
array('controller'=>'posts','action'=>'delete',$post['Post']['id'])).'</td>';
echo '</td>';
echo '</tr>';
The 'more' link/anchor is appended as a content/body of a post when i post something.
How can i make/put a break and stop 'more' being a element of body ?
I got the following line as a content or body of a post. But it will a separate link.
<a href="/posts/view/37" id="id_anchor_more" class="class_anchor_more">more</a>
The link should be inside
<table>
<tr>
<td>Content..Data.. <br/>'more' </td>
<td>Edit</td>
<td>Delete</td>
</tr>
</table>
Can someone help me to fix this problem ?
Isn't possible to have the body and 'more' in same column '' the problem is i'm using syntaxhighlighter http://alexgorbatchev.com/SyntaxHighlighter/ , when i put some code inside tag ...body.. then the problem occurs.
id_anchor_moreshould be unique; you're repeating it. Considerid_anchor_more_<?php echo $post['Post']['id']; ?>for unique IDs (If this is inside a loop of sorts; in any case it's repeat at least once.) – Ross Oct 5 '11 at 8:12