|
|
|
@ -1,4 +1,5 @@
@@ -1,4 +1,5 @@
|
|
|
|
|
#include "dbquery.h" |
|
|
|
|
#include <stdlib.h> |
|
|
|
|
#include <stdio.h> |
|
|
|
|
|
|
|
|
|
void html(void) { |
|
|
|
@ -12,15 +13,23 @@ void html(void) {
@@ -12,15 +13,23 @@ void html(void) {
|
|
|
|
|
In-game database is not directly synced with this web server.\ |
|
|
|
|
</p>\ |
|
|
|
|
</body></html>"; |
|
|
|
|
const char *html_mid = "<br>\
|
|
|
|
|
<H2>hi / good luck and have fun.<br><br>Available Pages</H2>\ |
|
|
|
|
<H3>Map Leaderboards</H3>\ |
|
|
|
|
<p>cts.py?map=[map name]</p>\ |
|
|
|
|
<H3>Player Ranks</H3>\ |
|
|
|
|
<p>cts.py?player=[client id fingerprint]<br>\ |
|
|
|
|
<hr>"; |
|
|
|
|
const char *qstr = getenv("QUERY_STRING"); |
|
|
|
|
printf("%s", html_top); |
|
|
|
|
// getquery(getenv("QUERY_STRING"));
|
|
|
|
|
// getquery("map=pornstar-kaine");
|
|
|
|
|
getquery(NULL); |
|
|
|
|
if (qstr == NULL) { |
|
|
|
|
printf("%s", html_mid); |
|
|
|
|
} |
|
|
|
|
getquery(qstr); |
|
|
|
|
printf("%s", html_bot); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
int main(void) { |
|
|
|
|
html(); |
|
|
|
|
// getquery("player=duHTyaSGpdTk7oebwPFoo899xPoTwP9bja4DUjCjTLo=");
|
|
|
|
|
return 0; |
|
|
|
|
} |
|
|
|
|