Posts by Marllon Gomes • 7 points
5 posts
-
-2
votes2
answers561
viewsA: PHP/ HTML zip code search
missing only include the bar before the zip number, the syntax is: http://viacep.com.br/ws/NUMERO_DO_CEP/xml/ $url = 'http://viacep.com.br/ws/'.$cep.'/xml/';…
-
1
votes2
answers155
viewsA: Perform action before saving?
The Laravel already has a structure already foreseen for this in the models, are the mutators: https://laravel.com/docs/5.7/eloquent-mutators in this case, you can use: public function…
-
0
votes2
answers30
viewsQ: Mysql Help to Return Unavailable Days for Scheduling
I have 2 mysql tables that represent days unavailable for scheduling: Table Holidays: id, day (date), name Table special_days: id, day (date), will_work(Boolean) In the querie I need to select the…
-
0
votes2
answers1885
viewsA: Adding Buttons in the upper right corner of the div
<div class="wrapper"> <img src="https://image.freepik.com/free-icon/male-user-shadow_318-34042.jpg"> <div class="buttons"> <a href="" class="btn btn-sm…
-
-1
votes3
answers417
viewsA: error insert data into php database
Your error refers to the space between the $_POST and brackets for these 2 indexes, change $plastico = $_POST ['plastico']; por $plastico = $_POST['plastico']; $papelao = $_POST ['papelao']; por…