Posts by Junior Silva • 70 points
5 posts
-
-1
votes2
answers398
viewsA: Registration with e-mail confirmation with token - PHP
I believe your fears are complicating something that is not of such a magnitude, friend. You can create your token with md5 as well as with other types of hash and even create your own, it is up to…
-
0
votes2
answers417
viewsA: Jquery function . load however inside the document
Are you passing an element as a parameter in the load? Apologies, but I believe that this will have no effect, the load can be used to query the server through an ajax in the parameter and even a…
javascriptanswered Junior Silva 70 -
0
votes1
answer1786
viewsA: Return PHP array in JSON in AJAX
For multidimensional array reading, you can read on success of AJAX, stipulating of course the dataType: 'json', with the $.each: success:function(resposta){ $.each(resposta, function(i, resp){ //…
-
-1
votes1
answer100
viewsA: Please help me filter by category in PHP?
can resolve this issue by passing your category id via GET url, and in your category.php file, validate and take the GET value that would be the id of the category and perform a query in the…
-
1
votes1
answer69
viewsA: No warning after sending the message
What you want to do is something relatively simple, but it is necessary to know how you are doing this task, if you have some scheme like mvc or if you are doing it in a procedural way, if you are…