Nieuw lid |
|
Ik heb een script om mijn direct admin te benaderen.
Dat doet hij dan ook perfect.
Alleen is de uitkomst dit:
list[]=sjon&list[]=msn&list[]=start
Dit zijn ook mijn emailadressen dus dat klopt.
Ik ben echt een noob in php dus hoe krijg ik dit netjes onder elkaar in een tabel? Dus zonder list[]= erbij?
<?php
include 'connect.php';
$sock = new HTTPSocket;
$sock->connect('blabla.nl',2222);
$sock->set_login('user','password');
$sock->set_method('POST');
$sock->query('/CMD_API_POP',
array(
'action' => 'list',
'domain' => 'blabla.nl',
));
$result = $sock->fetch_body();
echo $result;
?>
<?php include 'connect.php'; $sock = new HTTPSocket; $sock->connect('blabla.nl',2222); $sock->set_login('user','password'); $sock->set_method('POST'); $sock->query('/CMD_API_POP', 'action' => 'list', 'domain' => 'blabla.nl', )); $result = $sock->fetch_body(); ?>
|