hello,
Ik have a form , and it takes php variables with it that are loade form another form in his fields.
I want a code that clear that forms .
Whit a normal 'reset-button' it won't work !!
I allready have the code
<?
if ($reset) {
//the code that cleare the fields
}
?>
and I allready tried this codes
<?
$all = "$naam,$website,$bedrijf,$email,$comment";
if ($reset){
empty ("$all");
}
?>
<?
$all = "$naam,$website,$bedrijf,$email,$comment";
if ($reset){
clearstatcache("$all");
}
?>
<?
$dir = "../contact.freshface/";
if ($reset){
overload ("$dir");
}
?>
<?
$dir = "../contact.freshface/";
if ($reset){
header ("Locatdion: dirname($dir)");
}
?>
Actually I need a hard refresh on the page !!