Наверное нужно подключить mysql и писать в нее полученные от парсера результаты?
Вы как я понимаю совсем не знаете ни php ни mysql?
Вот вам пример моего парсера btc/ltc.
<?php
$file='btc_status.lock';
if(!flock($lock_file = fopen($file, 'w'), LOCK_EX | LOCK_NB))
die("Already runninng\n");
include("config.php");
mysql_query("SET names utf8");
$fl=json_decode(file_get_contents("https://btc-e.com/api/3/ticker/btc_usd-ltc_usd?ignore_invalid=1"));
//print_r($fl);
$btc=$fl->btc_usd;
$ltc=$fl->ltc_usd;
$timestamp=time();
if($btc->last>0)
{
mysql_query("INSERT INTO btc_charts_live (mark, date, low, high, buy, sell, volume, last) VALUES ('btce',$timestamp,{$btc->low},{$btc->high},{$btc->buy},{$btc->sell},{$btc->vol},{$btc->last})");
}
if($ltc->last>0)
{
mysql_query("INSERT INTO ltc_charts_live (mark, date, low, high, buy, sell, volume, last) VALUES ('btce',$timestamp,{$ltc->low},{$ltc->high},{$ltc->buy},{$ltc->sell},{$ltc->vol},{$ltc->last})");
}
mysql_close();