Changed for public view (from testing purposes)

This commit is contained in:
2017-03-18 23:05:09 -07:00
parent 3afe9390cc
commit 90a98c94b3

17
main.c
View File

@ -1,4 +1,5 @@
#include "dbquery.h"
#include <stdlib.h>
#include <stdio.h>
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;
}