hi!
Right basically my problem is the need to refresh after a execution to a html form. where a list of users will be ouputted then if a check box = 1 delete those users from the table
below is the general idea of my script
HTML CODE FOR FORM ----
if formbutton = 1
{
delete users where chkbox = 1 as value
}
if i run this script in say a single file http://domain/script.php
the form will refresh with the content deleted
if i do the same in say http://domain.com/index.php?page=script
then the code would delete the user from a database but the content of the user would still be visible, where a manual refresh is required.
(user is deleted but still shows user as output)
ive tried a header but html content is passed well before this script is outputted.
cheers, si