hi in a new form i display information of a database
banner name and the relative banner image.
i would like to add a DELETE button for each displayed row.
this is the code that i add for display the information.
how can i add a delete button ??
thanks.
banner name and the relative banner image.
i would like to add a DELETE button for each displayed row.
this is the code that i add for display the information.
<?php
$data =& $form->data['Xj5egChronoformsDataWerbung'];
foreach ( $data as $k => $v )
{
echo "Banner Name :{$v['banner_name']}<p>";
echo "<div><img src='/components/com_chronoforms/uploads/werbung/{$v['banner_img']}' /></div><p>";
echo "<p>";
}
?>
how can i add a delete button ??
thanks.