
Untitled
By: a guest on
Jul 11th, 2012 | syntax:
PHP | size: 1.08 KB | hits: 33 | expires: Never
public static void submit() {
System.out.println("Submitting...");
BufferedReader br = null;
try {
URL SUBMIT_LINK = new URL("http://jfd.net78.net/php/submit.php?user="
+ Environment.getDisplayName().toLowerCase() +
"&time=" + (System.currentTimeMillis() - Store.startTime) / 1000 +
"&exp=" + exp +
"&kills=" + Kills +
"&profit=" + Profit +
"&bones=" + bones +
"&visages=" + vis +
"&longest=" + (System.currentTimeMillis() - Store.startTime) / 1000);
SUBMIT_LINK.openStream().read();
SUBMIT_LINK = null;
System.out.println("Submitted...");
} catch (MalformedURLException e) {
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
} catch (IOException e) {
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
}
}