Heim >Backend-Entwicklung >PHP-Tutorial >Fragebogen implementiert durch PHP+MySQL+XML (Code)

Fragebogen implementiert durch PHP+MySQL+XML (Code)

不言
不言nach vorne
2018-10-13 14:14:504154Durchsuche

Der Inhalt dieses Artikels befasst sich mit dem Fragebogen (Code) zur Implementierung von PHP+MySQL+XML. Ich hoffe, dass er für Sie hilfreich ist.

Ich habe einen Fragebogen basierend auf dem Buch „PHP-typische Module und Projektpraktiken“ ausgefüllt. Gleichzeitig kann der Administrator den Umfrageinhalt ändern.

Gleichzeitig wurde eine CSS-Datei verwendet , ausgeliehen von

http://www.wufangbo.com/p-css-vote/

Benötigt 5 PHP-Dateien: admin.php, update.php, view.php, result.php, vote.php ,

Erstellen Sie zunächst einen neuen Ordner unter WWW, hier heißt er „diaocha“. Meine Portnummer ist 8080

Die Datenbank lautet wie folgt: der Name von Die Bibliothek ist cms_vote und der Name der Tabelle ist:vote


Der Inhalt in Votenote ist:

<movies>
<movie>
<title>您想去哪个城市:</title>
<id>1</id>
<count>350</count>
<content>广东</content>
</movie>
<movie>
<title>您想去哪个城市:</title>
<id>2</id>
<count>47</count>
<content>湖南</content>
</movie>
<movie>
<title>您想去哪个城市:</title>
<id>3</id>
<count>118</count>
<content>上海</content>
</movie>
<movie>
<title>您想去哪个城市:</title>
<id>4</id>
<count>122</count>
<content>北京</content>
</movie>
<movie>
<title>您想去哪个城市:</title>
<id>5</id>
<count>80</count>
<content>湖北</content>
</movie>
</movies>

1 , admin.php

<?php
$con = mysql_connect(&#39;localhost&#39;,&#39;root&#39;,&#39;root&#39;)or die("could not connect database");//此处根据自己的数据库的名字,密码进行修改
mysql_query("set names utf8");
mysql_select_db(&#39;cms_vote&#39;)or die("could not select database");
$aid = $_GET[&#39;aid&#39;];
if(!empty($aid)){
$sql=&#39;SELECT *FROM vote &#39;;
//WHERE aid=".$aid."&#39;;
$result = mysql_query($sql,$con);
$row = mysql_fetch_array($result);
}
else{
echo &#39;<script>alert(\&#39;调查异常\&#39;);</script>&#39;;
exit;
}
?>
rrree


2. update.php



调查管理
调查项目:
调查总人数:
开始时间:
结束时间:
投票项:

Ob die Verifizierung erfolgreich ist : http://localhost:8080/diaocha/admin.php?aid=1

(Beachten Sie, dass Sie ?aod=1 hinzufügen müssen) Das Format ist im englischen Format

Wenn Sie auf die Schaltfläche „Umfragedaten speichern“ klicken:

Es erscheint, dass Ihr Fragebogen wirksam geworden ist

3. view.php

<?php
$con = mysql_connect(&#39;localhost&#39;,&#39;root&#39;,&#39;root&#39;)or die("could not connect database");//此处根据自己的数据库的名字,密码进行修改
mysql_query("set names utf8");
mysql_select_db(&#39;cms_vote&#39;)or die("could not select database");
$aid = $_POST[&#39;aid&#39;];
$votename=$_POST[&#39;votename&#39;];
$starttime=$_POST[&#39;starttime&#39;];
$endtime=$_POST[&#39;endtime&#39;];
$votenote=$_POST[&#39;votenote&#39;];
$totalcount=$_POST[&#39;totalcount&#39;];
if(!empty($aid))
{
$sql = "UPDATE  vote SET Votename= &#39;".$votename."&#39;, 
Starttime=&#39;".$starttime."&#39;, Endtime=&#39;".$endtime."&#39;, 
Totalcount=&#39;".$totalcount."&#39;, Votenote=&#39;".$votenote."&#39; WHERE 
aid=&#39;".$aid."&#39;order by aid desc limit 1;";
$result = mysql_query($sql);
if(!empty($result)){
echo &#39;<script>alert(\&#39;数据保存成功\&#39;);</script>&#39;;
echo "您的调查问卷已生效!";
}
else
{
echo &#39;<script>alert(\&#39;数据保存失败\&#39;);</script>&#39;;
exit();
}
}
else{
echo &#39;<script>alert(\&#39;调查异常\&#39;);</script>&#39;;
exit();
}
?>

Die folgenden Ergebnisse werden angezeigt

4. vote.php

<?php
$voteitem = $_POST[&#39;voteitem&#39;];
$con = mysql_connect(&#39;localhost&#39;,&#39;root&#39;,&#39;root&#39;)or die("could not connect database");//密码用户名按照自己的修改
mysql_query("set names utf8");
mysql_select_db(&#39;cms_vote&#39;)or die("could not select database");
$sql="SELECT *FROM vote";
$result = mysql_query($sql,$con);
$arr = mysql_fetch_array($result);
$xmlstr = "<?xml version=\"1.0\" encoding=\"utf-8\"?>";
$xmlstr.=$arr[&#39;Votenote&#39;];
$xml = simplexml_load_string($xmlstr);
$b[]=Array();
$a[]=Array();
for($i=0;$i<5;$i++){
$b[$i]=$xml->movie[$i]->count;
$a[$i]=$xml->movie[$i]->count+1;
}
for($i=0;$i<5;$i++){
$b[$i]=$a[$i];
$xmlstra[$i]="<movies>
<movie>
<title>". $xml->movie[0]->title ."</title>
<id>1</id>
<count>".$b[0]."</count>
<content>". $xml->movie[0]->content ."</content>
</movie>
<movie>
<title>". $xml->movie[0]->title ."</title>
<id>2</id>
<count>".$b[1]."</count>
<content>". $xml->movie[1]->content ."</content>
</movie>
<movie>
<title>". $xml->movie[0]->title ."</title>
<id>3</id>
<count>".$b[2]."</count>
<content>". $xml->movie[2]->content ."</content>
</movie>
<movie>
<title>". $xml->movie[0]->title ."</title>
<id>4</id>
<count>".$b[3]."</count>
<content>". $xml->movie[3]->content ."</content>
</movie>
<movie>
<title>". $xml->movie[0]->title ."</title>
<id>4</id>
<count>".$b[4]."</count>
<content>". $xml->movie[4]->content ."</content>
</movie>
</movies>";
}
if($voteitem!=null){
$sql = "UPDATE  vote SET Totalcount=Totalcount+1,Votenote=&#39;".$xmlstra[$voteitem]."&#39; order by aid desc limit 1";
$result = mysql_query($sql);
$url = &#39;result.php?aid=1&#39;;
switch($voteitem){
case 0:
{
if(!empty($result)){
echo &#39;<script>alert("投票1成功!");location.href="&#39;.$url.&#39;"</script>&#39;;
exit();
}
break;
}
case 1:
{
if(!empty($result)){
echo &#39;<script>alert("投票2成功!");location.href="&#39;.$url.&#39;"</script>&#39;;
exit();
}
break;
}
case 2:
{
if(!empty($result)){
echo &#39;<script>alert("投票3成功!");location.href="&#39;.$url.&#39;"</script>&#39;;
exit();
}
break;
}
case 3:
{
if(!empty($result)){
echo &#39;<script>alert("投票4成功!");location.href="&#39;.$url.&#39;"</script>&#39;;
exit();
}
break;
}
case 4:
{
if(!empty($result)){
echo &#39;<script>alert("投票5成功!");location.href="&#39;.$url.&#39;"</script>&#39;;
exit();
}
break;
}
}
}
else{
echo &#39;<script>window.close();</script>&#39;; 
}
?>

5. result.php

<?php
$voteitem = $_POST[&#39;voteitem&#39;];
$con = mysql_connect(&#39;localhost&#39;,&#39;root&#39;,&#39;root&#39;)or die("could not connect database");
mysql_query("set names utf8");
mysql_select_db(&#39;cms_vote&#39;)or die("could not select database");
$sql="SELECT *FROM vote";
$result = mysql_query($sql,$con);
$arr = mysql_fetch_array($result);
$xmlstr = "<?xml version=\"1.0\" encoding=\"utf-8\"?>";
$xmlstr.=$arr[&#39;Votenote&#39;];
$xml = simplexml_load_string($xmlstr);
$b[]=Array();
$a[]=Array();
for($i=0;$i<5;$i++){
$b[$i]=$xml->movie[$i]->count;
$a[$i]=$xml->movie[$i]->count+1;
}
for($i=0;$i<5;$i++){
$b[$i]=$a[$i];
$xmlstra[$i]="<movies>
<movie>
<title>". $xml->movie[0]->title ."</title>
<id>1</id>
<count>".$b[0]."</count>
<content>". $xml->movie[0]->content ."</content>
</movie>
<movie>
<title>". $xml->movie[0]->title ."</title>
<id>2</id>
<count>".$b[1]."</count>
<content>". $xml->movie[1]->content ."</content>
</movie>
<movie>
<title>". $xml->movie[0]->title ."</title>
<id>3</id>
<count>".$b[2]."</count>
<content>". $xml->movie[2]->content ."</content>
</movie>
<movie>
<title>". $xml->movie[0]->title ."</title>
<id>4</id>
<count>".$b[3]."</count>
<content>". $xml->movie[3]->content ."</content>
</movie>
<movie>
<title>". $xml->movie[0]->title ."</title>
<id>4</id>
<count>".$b[4]."</count>
<content>". $xml->movie[4]->content ."</content>
</movie>
</movies>";
}
if($voteitem!=null){
$sql = "UPDATE  vote SET Totalcount=Totalcount+1,Votenote=&#39;".$xmlstra[$voteitem]."&#39; order by aid desc limit 1";
$result = mysql_query($sql);
$url = &#39;result.php?aid=1&#39;;
switch($voteitem){
case 0:
{
if(!empty($result)){
echo &#39;<script>alert("投票1成功!");location.href="&#39;.$url.&#39;"</script>&#39;;
exit();
}
break;
}
case 1:
{
if(!empty($result)){
echo &#39;<script>alert("投票2成功!");location.href="&#39;.$url.&#39;"</script>&#39;;
exit();
}
break;
}
case 2:
{
if(!empty($result)){
echo &#39;<script>alert("投票3成功!");location.href="&#39;.$url.&#39;"</script>&#39;;
exit();
}
break;
}
case 3:
{
if(!empty($result)){
echo &#39;<script>alert("投票4成功!");location.href="&#39;.$url.&#39;"</script>&#39;;
exit();
}
break;
}
case 4:
{
if(!empty($result)){
echo &#39;<script>alert("投票5成功!");location.href="&#39;.$url.&#39;"</script>&#39;;
exit();
}
break;
}
}
}
else{
echo &#39;<script>window.close();</script>&#39;; 
}
?>
<?php
$con = mysql_connect(&#39;localhost&#39;,&#39;root&#39;,&#39;root&#39;)or die("could not connect database");
mysql_query("set names utf8");
mysql_select_db(&#39;cms_vote&#39;)or die("could not select database");
$aid = $_GET[&#39;aid&#39;];
if(!empty($aid)){
$sql="SELECT *FROM vote WHERE aid=&#39;".$aid."&#39;";
$result = mysql_query($sql,$con);
$arr = mysql_fetch_array($result);
$xmlstr = "<?xml version=\"1.0\" encoding=\"utf-8\"?>";
$xmlstr.=$arr[&#39;Votenote&#39;];
$xml = simplexml_load_string($xmlstr);
$n0=$xml->movie[0]->count/$arr[&#39;Totalcount&#39;];
$n1=$xml->movie[1]->count/$arr[&#39;Totalcount&#39;];
$n2=$xml->movie[2]->count/$arr[&#39;Totalcount&#39;];
$n3=$xml->movie[3]->count/$arr[&#39;Totalcount&#39;];
$n4=$xml->movie[4]->count/$arr[&#39;Totalcount&#39;];
}
/*else
{
echo &#39;<script>alert(\&#39;调查异常\&#39;);</script>&#39;;
exit;
}*/
?>

Das obige ist der detaillierte Inhalt vonFragebogen implementiert durch PHP+MySQL+XML (Code). Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Dieser Artikel ist reproduziert unter:cnblogs.com. Bei Verstößen wenden Sie sich bitte an admin@php.cn löschen