I'm having trouble installing cakePHP on linux. When I run the command composer create-project --prefer-dist cakephp/app [app_name] the following error message appears:
Installing cakephp/app (3.5.0)
- Installing cakephp/app (3.5...
I have an application that uses some dependencies and these are managed by the composer everything working in the development environment.
But in production, how can you install a php application with dependencies?
What do I need to ma...
I would like to know if it is possible to insert multiple values inside a variable in html, pass via POST to php and register each one in a row in the database.
For example, enter multiple names through the name="name" field.
add everythin...
I have a text field with an add button next to it. The more I click the button it adds another text field with a remove button next to it. The idea is that when I click the successive remove buttons, it removes the text fields; but no matter wha...
I have a MySQL table where I need in a single result fields that are in 3 different columns. I'll give you an example:
Col.A Col.B Col.C
Joaquim Sérgio Ricardo
Ricardo Maria César
Rafael Solange...
I have a question and would like some tips to update a page through another page.
Example:
On page "A" I have a list of products and a link to page "B";
The "B" page will open in a new tab and have a form to include new products.
I woul...
Talk, how are you? I am developing a small web system at which price to upload budgets and later its download, I am following a tutorial that I found but I am with an error that I can not solve:
When I select the file and click process, I'm d...
I've been learning php though (I do not know if it's customary for a beginner) the code is getting a mess as I'm trying new things.
I took some lessons on YouTube channel Celke however despite being well didactic some of the times it seems to me...
Hello,
I have the following string:
$string = uniqid(mt_rand(1, 999999))." [email protected]|example123456"
The above string is totally random, the only thing that does not change is [email protected]|example123456 .
I want PHP to o...
Hello, I would like to know how to create multiple folders at once, for example, with this code:
<?php
$empresa = "Google";
$tipo = "Abertura";
$nome = "Contrato Social";
mkdir('$empresa/$tipo/$nome');
?>...