Nieuw lid |
|
Hoi,
Ik heb dit script:
<script type="text/javascript">
<!--
function confirmation() {
var answer = confirm("Are you sure you want to delete this fossil?")
if (answer){
window.location = "index.php?pageid=memberlist&action=deletefossil&fossil_id=<?=$fossil_id;?>&type=<?=$type;?>";
}
else{
window.location = "index.php?pageid=fossils&action=managefossil&user=<?=$username;?>";
}
}
//-->
</script>
<script type="text/javascript"> <!-- function confirmation() { var answer = confirm("Are you sure you want to delete this fossil?") if (answer){ window.location = "index.php?pageid=memberlist&action=deletefossil&fossil_id=<?=$fossil_id;?>&type=<?=$type;?>"; } else{ window.location = "index.php?pageid=fossils&action=managefossil&user=<?=$username;?>"; } } //--> </script>
Nu is het de bedoeling, als je dus fossil id 14 hebt, dat je die ook verwijderd, maar wel eerst een waarschuwing krijgt. Als je nee klikt linkt hij wel goed, maar als je ja klikt dan delete hij een ander fossil met dezelfde beginletter..
Weet iemand wat er fout is?
|