Posts by Anderson Galdino • 85 points
9 posts
-
0
votes2
answers2411
viewsA: How to find source URL
The use of the cookie as a reference page repository is much better in most cases, as cookies will keep the referrer until the browser is closed (and will keep it even if the browser tab is closed),…
-
0
votes1
answer767
viewsA: Sending attachment php mail function
For my customers I use so, Voce can adapt in your that I’m sure will work yes. <?php $nome = $_POST['nome']; $email = $_POST['email']; $telefone = $_POST['telefone']; $endereco =…
-
2
votes2
answers53
viewsQ: Validating Valor
I needed to validate a value before it was sent, as I do for it to be validated before sending, because it is already sending the value directly without validating the sum of the input. <script…
-
1
votes0
answers31
viewsQ: fetch_assoc() error on Boolean
I have this error in my application: Call to a Member Function fetch_assoc() on Boolean Running the same application on the local server and returns no error, on the dist server, returns the above…
-
0
votes1
answer69
viewsQ: View images in the database with a separate cakephp file
I am using phpcake as an administrator of a photo gallery, the images are saved inside the webroot/img/galleries/ folder for each category a folder is created following a numbering. Up to there…
-
0
votes2
answers46
viewsA: Images within DIV’s - How?
I think this can help you, Oce can put the logo in one corner or next to the other just changing the size of the col. <div class="container"> <div class="col-lg-12"> <div…
-
0
votes0
answers647
viewsQ: navbar Fixed top
As I can leave only the navbar as navbar-Fixed in scroll and when the customer is at the beginning of the site, do not overlap the topo1, at the moment it is disappearing when I put navbar-Fixed and…
-
0
votes2
answers408
viewsQ: multi upload php
How do I get this script to receive multiple images, at the moment it only takes one at a time. <?php include 'connection.php'; $album_id = $_GET['album_id']; if ($_FILES['photo']['name'] !=…
-
2
votes1
answer276
viewsQ: Multi upload with various php and mysql formats
I would like to do a multi upload with various img formats, I am researching how it does using php 7.1, I understood more or less the logic of the business. I just can’t seem to reproduce. Someone…