我是后端编程的新手,简而言之,我在一个问题网站工作
该项目的要求是在第一页是一个带有国家地图的 SVG,然后根据选择的城市,该值要传递给数据库,在地图中选择的城市的值。
对于后端,我使用的是 PHP,对于数据库 (PDO),
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./styling/citystyle.css">
<title>City</title>
</head>
<body>
<div class="hero">
<h1 class="qytetText">Where are you from?</h1>
<div class="map-container">
<!-- form -->
<form action="info.php" method="GET">
<svg xmlns:mapsvg="http://mapsvg.com" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg" mapsvg:geoViewBox="20.047065 43.270767 21.814280 41.83369"
width="612.56158" height="696.99365">
<path
title="Pristina" id="XK-PR" onclick="addActive01()" value= "1" name="Prishtina"/>
<text x="60%" y="42.5%" stroke="#ffffff" stroke-width="1px" dy=".1em">Prishtina</text>
<path
title="Kosovska Mitrovica" id="XK-KM" onclick="addActive02()" value= "2" name="Mitrovica"/>
<text x="40%" y="25%" stroke="#ffffff" stroke-width="1px" dy=".1em">Mitrovica</text>
<path
title="Đakovica" id="XK-DA" onclick="addActive03()" value= "3" name="Gjakove"/>
<text x="17%" y="58%" stroke="#ffffff" stroke-width="1px" dy=".1em">Gjakovë</text>
</div>
</body>
我尝试使用 js 获取值,然后尝试使用 $_POST 将其传递给 php,但它没有用,所以如果你们有任何提示,我将不胜感激
谢谢,如果我不清楚我对不起,我也是 StackOverFlow 的新手
qq_花开花谢_0
慕容3067478