Posts by Jhonatan Junio • 65 points
5 posts
-
1
votes2
answers3037
viewsA: Error file_put_contents() failed to open stream: No such file or directory
Re-create the folders. At the root of your project, create the structure: storage/ storage/app storage/framework/cache storage/framework/session storage/framework/views storage/framework/testing…
-
1
votes2
answers135
viewsQ: Error comparing PHP-Mysql dates
I have the following code: HTML: <input name="dataInicio" type="text" class="form-control datepicker" placeholder="Data" maxlength="10" autocomplete="off" /> <input name="dataFim"…
-
3
votes2
answers362
viewsQ: Remove line break after each INSERT
I own a textarea in my code, where the user will insert access vouchers separated by ENTER. My PHP code treats the typed values as follows: $voucher = explode("\n",$voucher); foreach ($voucher as…
-
1
votes2
answers101
viewsQ: Relationship between tables
I have a certain table already created and populated: CREATE TABLE `formulario` ( `id` int(4) NOT NULL AUTO_INCREMENT, `nome` varbinary(50) DEFAULT NULL, `carteira` varchar(30) NOT NULL,…
-
0
votes0
answers281
viewsQ: Calling an HTML page by passing information to a Mysql database via PHP
Hello! I took on a project here at the company, where it was proposed to make a pre-questionnaire for the user before he accessed a questionnaire. Up to a certain point the user navigates between…