Posts by Cristiano Pacheco • 36 points
3 posts
-
0
votes1
answer441
viewsA: Problem when trying to connect in SOAP Web Service
try to instantiate Soap this way: $client = new SoapClient(null, $url); this way, you do not send wsdl xml.
-
0
votes1
answer70
viewsA: Problems in a Join Codeigniter
Leave your code like this: $this->db->join('tbl_produto', 'tbl_produto_marca.cd_codigo = tbl_produto.cd_marca'); $this->db->where('tbl_produto.cd_codigo', $cd_codigo); $query =…
-
2
votes1
answer2921
viewsA: base_url of Codeigniter 3 by changing the call link of css and js
Hello, try this on: $config['base_url'] = ''; or $config['base_url'] = 'http://localhost' and place an echo in base_url: echo base_url('Assets/css/inscription.css');…