will definitely look into
it.
Stay well
Jacob Kruger
Blind Biker
Skype: BlindZA
'...fate had broken his body, but not his spirit...'
- Original Message -
From: "Richard Quadling"
To: "Jacob Kruger"
Cc:
Sent: Monday, August 10, 2009 1:29 PM
Subject: Re: [PHP
2009/8/10 Richard Quadling :
> 2009/8/10 Jacob Kruger :
>> Ok.
>>
>> Now got it working with the following two bits of script:
>> if ($_POST['btnDel'] == "Multiple deletion")
>> {
>> // perform multiple delete first
>> foreach ($_POST as $formField)
>> checkField($formField);
>>
>> } // end of dele
2009/8/10 Jacob Kruger :
> Ok.
>
> Now got it working with the following two bits of script:
> if ($_POST['btnDel'] == "Multiple deletion")
> {
> // perform multiple delete first
> foreach ($_POST as $formField)
> checkField($formField);
>
> } // end of delete button pressed
>
> and above that (see
Ok.
Now got it working with the following two bits of script:
if ($_POST['btnDel'] == "Multiple deletion")
{
// perform multiple delete first
foreach ($_POST as $formField)
checkField($formField);
} // end of delete button pressed
and above that (seems to only see function if located above the
2009/8/10 gunawan :
> answer is near right.. but i have better solution..
> echo '';
> i change into ...
> echo '';
>
> change id into the id you like to delete..
> in delete.php u just type this
>
> foreach($delete as $val)
> deleteRow($val); //function to delete id in table zz
>
> for your info
answer is near right.. but i have better solution..
echo '';
i change into ...
echo '';
change id into the id you like to delete..
in delete.php u just type this
foreach($delete as $val)
deleteRow($val); //function to delete id in table zz
for your info.. u should not delete the row.. better
tbooks etc.
TIA
Stay well
Jacob Kruger
Blind Biker
Skype: BlindZA
'...fate had broken his body, but not his spirit...'
- Original Message -
From: "Richard Quadling"
To: "Jacob Kruger"
Cc:
Sent: Sunday, August 09, 2009 10:18 AM
Subject: Re: [PHP-WIN] Re
2009/8/9 Jacob Kruger :
> Hi there
>
> I'm specifically doing something like displaying search results up to 50
> records, and I would like to be able to provide something like a checkbox
> next to each of them to allow multiple records to then be deleted at one
> time, but the problem seems to be