Re: [PHP-WIN] Retrieving URL of webpage etc.

2009-08-10 Thread Jacob Kruger
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

Re: [PHP-WIN] Retrieving URL of webpage etc.

2009-08-10 Thread Richard Quadling
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

Re: [PHP-WIN] Retrieving URL of webpage etc.

2009-08-10 Thread 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 delete button pressed > > and above that (see

Re: [PHP-WIN] Retrieving URL of webpage etc.

2009-08-10 Thread 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 (seems to only see function if located above the

Re: [PHP-WIN] Retrieving URL of webpage etc.

2009-08-10 Thread Richard Quadling
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

Re: [PHP-WIN] Retrieving URL of webpage etc.

2009-08-09 Thread 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.. u should not delete the row.. better

Re: [PHP-WIN] Retrieving URL of webpage etc.

2009-08-09 Thread Jacob Kruger
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

Re: [PHP-WIN] Retrieving URL of webpage etc.

2009-08-09 Thread Richard Quadling
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