Posts by Éo Ronaldo Dll • 47 points
13 posts
-
0
votes4
answers87
viewsQ: Show/Hide Information by clicking
I have Values in my application that precision a certain privacy, the code works well, I would just like to know how to hide the "**" when show the values. $(function() {…
-
0
votes1
answer294
viewsQ: Infinit Scroll - does not bring all BD data
I am trying to implement an Infinit scroll in my project, but I am having difficulty solving this problem the connection is perfect and I’m receiving the information from BD, but the code only shows…
-
0
votes2
answers174
viewsQ: Angular scroll with problem loading BD data
I am trying to implement Infinite Scroll to my project and following some lessons I found on the internet I reached this code: <?php $query = "SELECT * FROM produtos ORDER BY id DESC"; $resultado…
-
0
votes1
answer908
viewsQ: Convert image size before saving to BD
I would like to increase my processing code: // Local onde imagem vai ser salva $_UP['pasta'] = '../../media/'; // Tamanho da imagem $_UP['tamanho'] = 1024*250; // 250Kb // Exrensões permitidas…
-
1
votes1
answer450
viewsQ: Save visit cookie to page
Hello I am using a mysql php code that counts the visits of each page, but whenever the page is updated it adds one more visit, I would like a help with my code so that it saves the cookie for a…
-
0
votes0
answers113
viewsQ: paging does not load the next records
Hello, after running a search, it delivers the specified amount in the code, so far so good... now enter my problem, I’m using url friendly and even if the form send with "...? page=1" guess it does…
-
0
votes1
answer65
viewsQ: Information provided by the BD
Hello My project has a form that brings the BD information in case the user wants to edit, it is not changing the data, nor the image.. form: <?php $id = $_GET["id"]; //Executar consulta $result…
-
0
votes1
answer113
viewsQ: Form with $_files does not save the file in the site folders
Hello my projector has a form where can be sent an image, it saves the form data in the BD but does not insert the image in the files. someone can tell where my mistake is? <?php session_start();…
-
0
votes0
answers56
viewsQ: fail, log data into Database
Hello, I’m having some problems trying to register the form data in the bd, Form code: <form class="form-horizontal" method="post" action="processa/proc_cad_star.php"> <div…
-
0
votes1
answer40
viewsQ: Total registered in Database with Script
my php page uses the following files "1-config.php = connects to the database" "2-total.php = connects to the Form and shows the total record on the page" in the html of my main page I use <?php…
-
0
votes2
answers87
viewsQ: Show on page total id’s registered in BD
There is a table that shows all BD records, but on a page of my project where I should show the record total(id) of my table. Connection file: <?php $mysqli = new mysqli("localhost",…
-
0
votes2
answers3644
viewsQ: verify registered user PHP Mysqli
Hello, I know almost nothing about Php and mysqli. I am trying to implement the user system for the site, the registration is already working but I can register with the same email as many times as…
-
-1
votes3
answers1062
viewsQ: PHP mysql User Registration Form
I just implemented this form (Form page) on my website, but I could not connect to the database to save the records. I used the mysql_connect and she gives that mistake: changed to mysqli and still…