Hello,
This is a very wierd problem :
$string = "ip=" . $data2['ip'] . "&";
$string .= "cgi=" . $data2['whm_cgi'] . "&";
$string .= "quota=" . $data2['whm_space'] . "&";
$string .= "frontpage=" . $data2['frontpage'] . "&";
Returns:
ip=n&cgi=n"a=50&frontpage=n&
IP = n
CGI = n
Space = 50
frontpage = n
Why does it add '' and remove "
Wierd problem 🙂