Posts by Gabriel Lucchese • 86 points
10 posts
-
1
votes1
answer156
viewsA: User privileges
You can do this in many ways. I’ll show you a very simple example using php session as user identifier: <nav class="navbar navbar-toggleable-md navbar-light bg-faded"> <button…
-
1
votes2
answers617
viewsA: How to organize JSON content
First I would like to suggest an edition of your Json so that the return is readable, someone can tamper with the code that one day is not you! Then I’d do something about it: Write your file using…
-
2
votes4
answers129
viewsA: Build database
I believe the bank can be created with the following commands: CREATE DATABASE Estudo; CREATE TABLE Persons ( id int, precipitacao varchar(255), temperatura varchar(255), estacao varchar(255),…
-
0
votes3
answers1342
viewsA: Doubt with Google Charts API
Unfortunately the google API does not convert the currency to real ones. However, what can be done is the conversion through the code itself. Thus you print the converted value accompanied by the…
google-chartsanswered Gabriel Lucchese 86 -
0
votes1
answer27
viewsA: login forum/site and Session sharing
Doing this using session is not possible, the session remains active only in the domain that created it, at most what could be done would be to share this session for use in the subdomains of the…
phpanswered Gabriel Lucchese 86 -
2
votes1
answer880
viewsA: Page Bootstrap 4
I’m not sure I understand the question, but come on, Bootstrap obeys the class orientation: "Page navigation", "pagination", "page-item" and "page-link". An example can be found at the following…
-
1
votes1
answer257
viewsA: PHP Procedural Method or Object Orientation
Both of them are safe. Object-oriented programming, in addition to all its facilities such as inheritance, polymorphism and among others, helps you keep the logic of programming well applied. Your…
phpanswered Gabriel Lucchese 86 -
0
votes1
answer319
viewsA: Access to external form with recaptcha
It is not possible to resolve CAPTCHA in another application, other than the page because one of the information sent to the page that receives the action is a token provided by Google. If possible…
-
0
votes2
answers61
viewsA: Form field above all elements on page
You can use negative z-index to solve this problem. In your case it would: HTML <input type="text" class="exemplo" name="" placeholder="Ex: Assinatura de E-mail"> CSS .exemplo{ z-index:-99; }…
-
-3
votes1
answer63
viewsA: Payment processing for more than one API
You can use a third API that receives payment from your customers such as Paypal or Mercadopago. So you get the full amount, and make the payments the moment the API accuses you of completing the…