Exemplo n.º 1
0
				ID
			</td>
			<td>
				Message
			</td>
			<td>
				Mark as Read
			</td>
			<td>
				Delete Message
			</td>
		</tr>
	</thead>
	<tbody>
		<?php 
foreach (Notifaction::get($user->data()->id) as $message) {
    echo '<tr>';
    echo '<td>';
    echo $message->id;
    echo '</td>';
    echo '<td>';
    echo $message->message;
    echo '</td>';
    echo '<td>';
    if ($message->read == 0) {
        echo "<a href='?page=notification&id={$message->id}&a=read&val=1'>Mark as read</a>";
    } else {
        if ($message->read == 1) {
            echo "<a href='?page=notification&id={$message->id}&a=read&val=0'>Mark as un-read</a>";
        }
    }