Refresh pagina zelfde plaats uitkomen.
Ik ben bezig met een systeem waar mee dingen kan bestellen. En als iets besteld dan moet bij elke product de pagina refreshen en daardoor gaat die weer helemaal naar boven van de pagina. Hoe kan je het zo maken dat dat niet zo gebeurd en dat het werk op pc en smartphone.
Dit is de code van de pagina.
Heb even 2 keer php omdat dan de code dan beter word weergeven want er ook script in staat.
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?php
[code]<?php
include_once("config.php");
$page_name = "Bestelformulier";
$bestel1= "class='active'";
include("top3.php");
include("includes/db.php");
include("includes/functions.php");
if($_REQUEST['command']=='delete' && $_REQUEST['pid']>0){
remove_product($_REQUEST['pid']);
}
else if($_REQUEST['command']=='clear'){
unset($_SESSION['cart']);
}
else if($_REQUEST['command']=='update'){
$max=count($_SESSION['cart']);
for($i=0;$i<$max;$i++){
$pid=$_SESSION['cart'][$i]['productid'];
$q=intval($_REQUEST['product'.$pid]);
if($q>0 && $q<=999){
$_SESSION['cart'][$i]['qty']=$q;
}
else{
$msg='Some proudcts not updated!, quantity must be a number between 1 and 999';
}
}
}
if($_REQUEST['command']=='add' && $_REQUEST['productid']>0){
$pid=$_REQUEST['productid'];
addtocart($pid,1);
header("location:Bestel.php");
//header("location:load.php");
exit();
}
?>
<script language="javascript">
function addtocart(pid){
document.form1.productid.value=pid;
document.form1.command.value='add';
document.form1.submit();
}
</script>
<script language="javascript">
function del(pid){
if(confirm('Wil je echt dit product uit je Winkelwagen halen?')){
document.form1.pid.value=pid;
document.form1.command.value='delete';
document.form1.submit();
}
}
function clear_cart(){
if(confirm('Wil echt heel je Winkelwagen leeg halen?')){
document.form1.command.value='clear';
document.form1.submit();
}
}
function update_cart(){
document.form1.command.value='update';
document.form1.submit();
}
function verstuur_cart(){
document.form1.command.value='update';
document.form1.submit();
window.location='billing.php';
}
</script>
<form name="form1">
<input type="hidden" name="productid" />
<input type="hidden" name="command" />
</form>
<div class="page-header">
<h1><span class="glyphicon glyphicon-pencil"></span> Bestelformulier</h1>
</div>
<div id="myTabs" class="tab-content">
<div class="tab-pane fade in active" id="hs">
<?php include("HS.php")?>
</div>
<div class="tab-pane fade" id="verband">
<?php include("verbandmiddelen.php")?>
</div>
<div class="tab-pane fade" id="kantoor">
<?php include("kantoor.php")?>
</div>
</div>
<?php include('bottom.php') ?> ?>
[code]<?php
include_once("config.php");
$page_name = "Bestelformulier";
$bestel1= "class='active'";
include("top3.php");
include("includes/db.php");
include("includes/functions.php");
if($_REQUEST['command']=='delete' && $_REQUEST['pid']>0){
remove_product($_REQUEST['pid']);
}
else if($_REQUEST['command']=='clear'){
unset($_SESSION['cart']);
}
else if($_REQUEST['command']=='update'){
$max=count($_SESSION['cart']);
for($i=0;$i<$max;$i++){
$pid=$_SESSION['cart'][$i]['productid'];
$q=intval($_REQUEST['product'.$pid]);
if($q>0 && $q<=999){
$_SESSION['cart'][$i]['qty']=$q;
}
else{
$msg='Some proudcts not updated!, quantity must be a number between 1 and 999';
}
}
}
if($_REQUEST['command']=='add' && $_REQUEST['productid']>0){
$pid=$_REQUEST['productid'];
addtocart($pid,1);
header("location:Bestel.php");
//header("location:load.php");
exit();
}
?>
<script language="javascript">
function addtocart(pid){
document.form1.productid.value=pid;
document.form1.command.value='add';
document.form1.submit();
}
</script>
<script language="javascript">
function del(pid){
if(confirm('Wil je echt dit product uit je Winkelwagen halen?')){
document.form1.pid.value=pid;
document.form1.command.value='delete';
document.form1.submit();
}
}
function clear_cart(){
if(confirm('Wil echt heel je Winkelwagen leeg halen?')){
document.form1.command.value='clear';
document.form1.submit();
}
}
function update_cart(){
document.form1.command.value='update';
document.form1.submit();
}
function verstuur_cart(){
document.form1.command.value='update';
document.form1.submit();
window.location='billing.php';
}
</script>
<form name="form1">
<input type="hidden" name="productid" />
<input type="hidden" name="command" />
</form>
<div class="page-header">
<h1><span class="glyphicon glyphicon-pencil"></span> Bestelformulier</h1>
</div>
<div id="myTabs" class="tab-content">
<div class="tab-pane fade in active" id="hs">
<?php include("HS.php")?>
</div>
<div class="tab-pane fade" id="verband">
<?php include("verbandmiddelen.php")?>
</div>
<div class="tab-pane fade" id="kantoor">
<?php include("kantoor.php")?>
</div>
</div>
<?php include('bottom.php') ?> ?>
Gewijzigd op 02/12/2016 15:32:26 door - Ronald -
Verdiep je eens in AJAX. ;)
Ik zal eens kijken, alvast bedankt voor de tip.
Ja, dat is juist het probleem als ik zo script er in zet dan werkt het niet want als je product toevoegt dan komt dit nog achter de url te staan ../Bestel.php?productid=1&command=add maar daarnaar moet die eigenlijk weer naar de normale pagina ../Bestel.php
Het punt is, op het moment dat je zo'n add command aan het verwerken bent hoeft er helemaal geen output geproduceerd te worden.
Hoe kan ik dan oplossen? Want ben niet beste in php.