我使用this site
中的免费脚本(Ajax投票/投票)我的shoutcast服务器有一个简单的php页面来显示播放的歌曲
Open your AppDelegate.h file add the following import directives:
#import <WindowsAzureMessaging/WindowsAzureMessaging.h>
#import "HubInfo.h"
&#13;
我的问题是: 所有请求Php / ajax / mysql都有效,但实际上当我进行投票时,它在db中注册了如下:
vt_ $ song 1 0
如何获取原始php请求的真实姓名:
echo $ returnStats [&#39; currentSong&#39;]; 或 echo $ song;
在db中注册,如:
vt_Kidd Guti-Step Everything 1 0 (或任何其他播放的歌曲)
示例:[HERE]
提前感谢您的帮助。
答案 0 :(得分:0)
在这一行中,$song
未被解析为PHP,因此显示文字$song
:
<div class="vot_updown1" id="vt_$song"></div>
尝试:
<div class="vot_updown1" id="vt_<?php echo $song; ?>"></div>