Posts by Marciohrm • 3 points
4 posts
-
0
votes1
answer36
viewsQ: Change a table in the database from a date in another table
I have a ban_logs table that contains a date and needs that after that date, an event or Trigger is enabled to change the is_banned field of the user_data table. ban_logs id, user_id, date,…
-
0
votes1
answer112
viewsQ: How to take the variable ID of a form in ajax
I need to know how to submit the form id, which varies according to the post ID, which would be something like myForm'. $id. ' to be able to treat each form itself. The form is sent through the…
-
0
votes0
answers99
viewsQ: Update comments without loading page
For each post, I have a feedback form. What I need to do is pass the form ID to the script, in order to handle the comment in the respective POST. But to pass the value to the div process, I would…
-
0
votes1
answer62
viewsQ: Multiple queries and then sort those results in order to appear in order by date
I need to do N consultations according to a value received from another consultation. $idList = array(); if (@$_GET["page"] == "profile"){ $idList[0] = $_GET['pid']; $cont = 0; } else { $idList[0] =…