Posts by Huhifeku • 157 points
17 posts
-
2
votes1
answer112
viewsQ: Get server operating system in PHP
How can I get the server operating system in PHP? I’d like to return something like this: Windows 7 Service Pack 1 x64
-
2
votes0
answers35
viewsQ: Questions about creating an API
I’m studying and trying to understand the development of an API, but I have some questions... 1 - What language/tool do you recommend for creating an API ? I’m using the Slim Framework to learn,…
-
1
votes1
answer74
viewsQ: Develop loading in steps with JS/PHP
I have a PHP screen where I have some steps to do, as these steps are done, the browser is in white and carrying, then would like to place a loading, where would show the user what is being done.…
-
1
votes1
answer3155
viewsQ: How to solve the ORA-01795 (maximum number of expressions) error in Codeigniter
I am developing a report in Codeigniter, but my select contains a filter that can have more than 1000 expressions in my where_in and then it returns me the error: ORA-01795: o número máximo de…
-
-1
votes1
answer110
viewsQ: Update/Sync Project in Codeigniter
I am developing a web system in codeigniter and will have a link to update the project version when you have an update. That is, the client will access the system, a message will appear warning that…
-
1
votes2
answers1736
viewsQ: Format string/float for PHP currency
I am doing reports in PHP and I have a column of value, only this column can come values with OR commas point. When it comes to displaying the value, I need you to show it in the form of cash.…
-
1
votes1
answer139
viewsQ: Call Procedure with Oracle return in Codeigniter
I am developing a system and in a part of the code, I need to call a precedent and it returns me a value. How can I do that? For now I did so and it didn’t work: $sql = "CALL P_VERIFICA_VALORES(" .…
-
0
votes2
answers350
viewsA: PHP + Codeigniter - Persist query parameter in pagination
In your paging configuration, try to put this: $config["base_url"] = site_url('clientes/gerenciar/page'); $config['first_url'] =…
-
2
votes1
answer3604
viewsQ: How to get only time of timestamp?
I have a column timestamp on my table and I need to get only the time of these values. Example of how you are registered: 30.12.1899 17:03 Example of how I need to display through select: 17:00 I…
-
0
votes1
answer241
viewsQ: Load controller with hyphen or underline in the URL - Codeigniter
I hosted my project done in Codeigniter 3 on a server using Linux and PHP 7 and I cannot load certain links, gives error 404. Example of Controller Name: Relatorio_Detalhado.php Link in the url:…
-
0
votes1
answer2219
viewsQ: Forbidden when accessing my directories - Apache
I am using Windows 7 x64 and installed apache 2.4 with PHP 7.1 separately, configured everything and when I place localhost, it works normally. So inside my htdocs, I created a folder called…
-
1
votes1
answer401
viewsQ: Name of Uppercase Columns with Codeigniter and Postgreesql
I am developing a WEB system using Codeigniter with support for Oracle database and Postgresql. In my queries, I use Codeigniter’s own Query Builder. Simple example of Select: SELECT "ID", "NOME"…
-
1
votes2
answers630
viewsQ: Remove double quotes in codeigniter query Builder
I am using the Codeigniter framework and every time I create a select with their Builder query, it puts double quotes on all columns and tables. Ex: SELECT "ID", "NAME" FROM "STUDENT" This ends up…
-
0
votes0
answers506
viewsQ: Interbase (Firebird) with Wampserver
I can’t get the php_interbase on my WAMP server, I decrypted the php.ini and yet PHP did not recognize. Man Wamp is 64x 2.5 with PHP 5.5, usage Windows 64 bits. I installed the Firebird on my…
-
0
votes0
answers59
viewsQ: Upload XML to Codeignter 3
I am uploading to codeigniter 3 and it is not accepting xml to upload. It shows me an error that the selected file type is not allowed. $config['upload_path'] = './uploads'; $config['allowed_types']…
-
0
votes1
answer605
viewsQ: Integrate Wordpress with Oracle
I will develop a "E-commerce" services in Wordpress, known as Woocommerce, except that I need to integrate it with Oracle, in addition to the Mysql itself that it will run... Example: When someone…
-
1
votes3
answers115
viewsA: How to access an array and export variables?
Have you tried that? $cliente = $certificate['cliente']; $entrega = $certificate['entrega']; $utilizacao = $certificate['utilizacao']; $norma = $certificate['norma'];