I can not list a directory in codeiniter, I just need the names of the files, before I did it like this:
setlocale(LC_ALL,"es_ES");
$path="servicios/"; //directorio a listar
$directorio=dir($path);
$pn= array();//pila de nombres
$pf=...
select nombre,nombre_comando,valor
from servidor S, configuracion C, configuracionservidor F
where F.id_servidor = S.id
and F.id_configuracion=C.id
This query works for me in Mysql but at the moment of writing it in the model of...
In the DB model , the query is fine, in the Controller the information is sent correctly to the view but in the View not I know how to print the matrix in a foreach. The only way to print the arrangement is with the following:
<?php...
I am developing a web system in CodeIgniter, it is the first time I work with it, after having developed the application in my localhost , I decided to upload it to a test server, so I loaded my site in it, I later changed the settings in the f...
My problem is that when loading the BD records in the datatable it takes several seconds, eh I saw that you can only show the data you need to see and from there make a request for the other data but I do not understand how does that my code is...
I'm trying to visualize ALTO XML files but I have not got anything that can help me do it with PHP and javascript . Attached image of the idea I'm looking for.
I'm working with CodeIgniter and I need to add the Mercado Pago SDK, the situation is that I have not managed to get CI to work on it, I currently have the SDK in my /libreries folder and I in my constructor tried to add the SDK as follow...
I'm trying to get the name of an image in the controller of a Codeigniter project, however, I can not get it.
This is my method:
public function add() {
$path = 'img/noticias/';
$config = array(
'upload_path' => "./img/n...
In my company we decided to use Odoo ERP to create our sales invoices, but the problem is that the external API uses XML-RPC, currently I work with Codeigniter (php) and I have managed to connect and create contacts, but I can not find documenta...