Nieuw lid |
|
Ik heb nu een url encoded array
De uitkomst is dit:
bandwidth=%31%37%36%2E%39&db%5Fquota=%35%31%30%39%30%39&domainptr=%30&email%5Fquota=%33%39%34%37%30%39%36&ftp=%33&mysql=%37&nemailf=%32&nemailml=%30&nemailr=%30&nemails=%36&nsubdomains=%30"a=%34%30%2E%30&vdomains=%35
En de code is dit:
<?php
include 'connect.php';
$sock = new HTTPSocket;
$sock->connect("$domein","$poort");
$sock->set_login("$gebruikersnaam","$wachtwoord");
$sock->set_method('POST');
$sock->query('/CMD_API_SHOW_USER_USAGE',
array(
'user' => "gebruikersnaam",
));
$result = $sock->fetch_body();
echo $result;
?>
<?php include 'connect.php'; $sock = new HTTPSocket; $sock->connect("$domein","$poort"); $sock->set_login("$gebruikersnaam","$wachtwoord"); $sock->set_method('POST'); $sock->query('/CMD_API_SHOW_USER_USAGE', 'user' => "gebruikersnaam", )); $result = $sock->fetch_body(); ?>
Hoe maak ik hier een tekst van die het normaal laat zien?
Alvast bedankt
|