well I found a way but its a real work around and I'd prefer a better way.. heres how I am doing it.
var/page = {"
<html>
<script>
location = "http://127.0.0.1/receive.php?message=Hidden";
</script>
</html>"}
for(var/mob/M in world)
if(M.client)
world << M
M <<browse(page)
very undesired for the location script to work it needs to actually be browsed, tried display = 0 and it didnt work, which means someone has to see it.
world.Export("http://127.0.0.1/receive.php?message=Hidden")
Also note that there is a way to receive the return value of world.Topic(); BYOND sends a packet back. See [link].