Posts by Giovanni Cruz • 81 points
11 posts
-
0
votes2
answers22
viewsA: Function - Change date format on blank form X
Hello, William. This input you are trying to format is kind date ? If not, I recommend that you use the input date together with the event .on('select', callback). So, you can format the date with…
javascriptanswered Giovanni Cruz 81 -
0
votes1
answer41
viewsQ: Migrations giving error 42000
I’m trying to spin mine Migrations (php Artisan migrate) inside my docker container. I’m using Lumen to develop my API. I don’t know what could be going on: What might be going on? I’ve refilled my…
-
1
votes0
answers91
viewsQ: Class not found in controller
I am trying to make use of two classes in a controller (Franchiserepository and Orderrepository), but these classes are not being found in my controller. Below is the code of the classes and the…
phpasked Giovanni Cruz 81 -
0
votes1
answer766
viewsQ: 404 in Docker NGINX container
Hello fellow developers! I am having a problem with NGINX in which the root of the application is not found, remembering that I need a "mod_rewrite" to make my Urls beautiful. I will leave the NGINX…
-
0
votes2
answers73
viewsQ: Stack does not remove values
Hello, I am making a Stack (LIFO) and it does not replace the values by 0 when removing the values from the stack. This was a way I found to "remove" the data from it and the display is shown with…
casked Giovanni Cruz 81 -
-1
votes3
answers516
viewsQ: Error in POSTGRESQL Database Creation
I am having the following error when creating a POSTGRESQL database: SQL CODE: CREATE DATABASE pesadaum; CREATE TABLE user( user_id int PRIMARY KEY NOT NULL AUTO_INCREMENT, email varchar(255) NOT…
-
1
votes1
answer367
viewsQ: Error 404 with Codeigniter
I’m having the following mistake with Codeigniter: URL:http://192.168.33.10/crudex/index.php/user_controller "404 Page Not Found, The page requested was not found." Controller Code: <?php…
-
2
votes2
answers63
viewsQ: Error adding elements in Mysql Database with PDO
I am having the following error while inserting into the database: Parse error: syntax error, Unexpected '{', expecting '(' in /var/www/public/Test/db/add-bank.php on line 18 Line 18 is: } catch {…
-
2
votes4
answers1242
viewsQ: Error with "Cordova run android"
I’m getting an error entering command: "Cordova run android" NOTE: Remembering that I have already set the path of sdk: export…
-
1
votes1
answer89
viewsQ: Database does not show the data entered by the user
Good morning, I’m trying to make a news system, but the database does not receive the data from php. I would like to know how to solve this. <html> <head> <meta charset="utf-8">…
-
1
votes3
answers366
viewsA: Variable in main is global?
For fixed and constant variables declaration: COMMANDO: #defines: Creates a label for any value and does not take up memory space. const: Simulates a constant in memory, that is, creates a variable…