<html>
<body>
Hi everybody,<br>
I am new to phpxmlrpc. I downloaded the xmlrpc class and tried to use
it.<br>
After lots of tries, I keep on getting this error:<br>
<b>Fatal error</b>: Cannot redeclare xmlrpc_decode() in
<b>/.../xmlrpc.inc</b> on line <b>1380<br>
</b>I can get out of this, can anyone help me?<br>
I am working with a very simple script like this:<br><br>
$client=new xmlrpc_client(&quot;path&quot;, &quot;server&quot;, 
80);<br>
$par1=new xmlrpcval(array(<br>
&quot;first_param&quot; =&gt; new xmlrpcval(&quot;first_value&quot;,
&quot;string&quot;),<br>
&quot;second_param&quot; =&gt; new xmlrpcval(&quot;second_value&quot;,
&quot;string&quot;)), &quot;struct&quot;);<br>
$par=xmlrpc_encode($par1);<br>
$f=new xmlrpcmsg(&quot;method&quot;,$par);<br>
$r=$client-&gt;send($f);<br><br>
Thank you in advance<br>
Sam</body>
</html>