You will need jquery and datatables, which can be downloaded to your local folders. These will be included in our PHP pages later. Let's say we want to display all weapons, here is the template (HTML or PHP). You must replace $weapons_db with the actual OBJNUM of your weapons database:
ID | Name |
---|
Query.php is a PHP file that queries the MOO server on port 8080. This is already setup by default in hellcore, but you need some modifications, firstly to $json_utils:_www
$json_utils:"_www _html" this none this try wargs = $su:explode(args[1], "/"); if (length(wargs) > 1) item = toobj(wargs[2]); if (gamevalid(item)) data = item:_json(); return {data}; endif endif except e (ANY) $rpg:report_error(e); return pass(@args); endtry return pass(@args);This changes the $json_utils:_www verb to accept an additional objects. Now let's make query.php:
* Step 3:
Now - our desired_objectnumber must have _json verb, and it must return formatted json (not HTML). Note that the data is structed very specifically to comply with jquery datatables. Example:
$weapons:_json w = $ou:fertile_branches($weapon); data = []; data = ["data" -> {}]; for x in (w) id = tostr(x)[2..$]; d = data["data"]; d = setadd(d, {id, x:name()}); data["data"] = d; yield; endfor return $json_utils:encode(data);
* Step 4: Getting JSON from our MOO server
http://yourdomain.com:8080/query.php?objid=$weapons
Will now return JSON output, something like this (partial):
*Step 5: Security
Use iptables to ONLY allow requests to query.php, and yourdomain.com:8080 from your own domain. Google this!
Questions? Comments?
Post them below!