So I’m trying to retrieve just one line from a site. I don’t know how to do regex syntax, but this is as far as I’ve gotten:
[php]<?php
$content = file_get_contents(‘http://arkbank.jlss.eu/balance.php?id=127’);
preg_match(’/^
ACCOUNT BALANCE:
([0-9]+) Bux
var_export($match);
?>[/php]