-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplacanje.php
More file actions
40 lines (30 loc) · 1.1 KB
/
placanje.php
File metadata and controls
40 lines (30 loc) · 1.1 KB
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
<?php
session_start();
if ($_SERVER["REQUEST_METHOD"] == "POST"){
$_SESSION['dostava'] = $_POST['dostavljanje'];
$_SESSION['napomena'] = $_POST['napomena'];
}
?>
<html>
<head>
<link rel="stylesheet" type="text/css" href="stil.css">
</head>
<body>
<div id="menu">
<?php include 'templates/menu.php';?>
</div>
<div class="row">
<div id="placanje">
<form>
<h3>Odaberi način plaćanja:</h3>
<input type="radio" name="placanje" value="gotovina" onclick="window.open('http://localhost/dashboard/RWA/placanjeGotovinom.php', '_self');">Plaćanje gotovinom pri preuzimanju </input>
<br> <br><input type="radio" name="placanje" value="kartica" onclick="window.open('http://localhost/dashboard/RWA/placanjeKarticom.php', '_self');">Kartično plaćanje </input>
<br><br>
</form>
</div>
<div id="trazilica" >
<?php include 'templates/trazilicaIPoruka.php';?>
</div>
</div>
</body>
</html>