Skip to content

Commit

Permalink
Update index.php
Browse files Browse the repository at this point in the history
  • Loading branch information
milq authored May 17, 2017
1 parent 79d1b62 commit ea3dc9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions learn/crud/xml/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
echo '<td>' . $student->nickname . '</td>';
echo '<td>' . $student->date_of_birth . '</td>';
echo '<td>' . $student->mark . '</td>';
echo '<td><a href=\'form.php?id=' . $student['id'] . '\'>Edit</a></td>';
echo '<td><a href=\'process.php?delete=yes&id=' . $student['id'] . '\'>Delete</a></td>';
echo '<td><a title=\'edit_' . $student['id'] . '\' href=\'form.php?id=' . $student['id'] . '\'>Edit</a></td>';
echo '<td><a title=\'delete_' . $student['id'] . '\' href=\'process.php?delete=yes&id=' . $student['id'] . '\'>Delete</a></td>';
echo '</tr>';
}

Expand Down

0 comments on commit ea3dc9c

Please sign in to comment.