I am trying to create a mass delete button. I am trying to have an input field, where the admin can specify the amount of rows he/she wants to delete.
So far, I am using the following code to try and delete the amount specified in the input field, but nothing happens and there are no errors in the error log:
helper.php
function deleteall($all) {
$db = JFactory::getDBO();
$query = $db->getQuery(true);
$query->delete()
->from('#__shoutbox');
$db->setQuery($query, 0, $all);
$db->query();
}
mod_shoutbox.php
if(isset($post['deleteall'])) {
$all = $post['all'];
modShoutboxHelper::deleteall($all);
}
default.php
<form method="post" name="deleteall">
<input name="all" type="text" value="" />
<input name="deleteall" type="submit" value="mass delete" />
</form>
I believe the SQL query is fine and that the problem is to do with the HTML in the default.php but not 100% sure. Can someone please let me know where I am going wrong?
Update:
$post has already been defined as I am using Joomla coding standards.
$allinsidefunction deleteallwhen you call it, what do you expect should$db->setQuery($query, 0, $all);do? - The SQL keyword your looking for might be theLIMITclause btw. - it belongs into the SQL, not for the number of returned rows. – hakre Dec 31 '12 at 16:46LIMITin SQL to limit the records to be deleted:delete from table limit 100– juergen d Dec 31 '12 at 16:46die($all.'');before$db->query();– Sorin Trimbitas Dec 31 '12 at 16:52