I'm using a host that does not let me run a program for more than 5 minutes, therefore forcing me to host mongo through another site.
I'm trying to connect to this other site through PHP5.3, but it looks as if the mongo extension isn't installed, so I can't call something like
Code
$m = new Mongo("mongodb://username:password:url:port");
because there isn't a Mongo class to call.
So my question is, is there another way to do this through something like Javascript?
I'm somewhat comfortable with curl, would that work?