I am interested in creating a php application that uses bitcoin. I've understood everything so far except for what I am supposed to supply as these variables:
$btc_connect = array("user" => "youusername", // RPC Username
"pass" => "yourpassword", // RPC Password
"host" => "127.0.0.1", // RPC Hostname/IP
"port" => 8321); // RPC Port
$mybtc = new jsonRPCClient("http://{$btc_connect['user']}:{$btc_connect['pass']}@{$btc_connect['host']}:{$btc_connect['port']}");
I have searched everywhere, including the bitcoin.org website to try to find out how to set this up. Is there something I have to install on my server?
I have a webserver and can set things up if only I knew how to get started with this.