07-01-2018, 04:04 PM
(This post was last modified: 07-02-2018, 05:45 PM by yourfriendkarol.
Edit Reason: solveddd
)
I wanted to add user_ID next to the input he submits with a form created by your form manager
so I know which user entered that input and i can show him things accordingly.
I tried this
from here:
https://userspice.com/advanced-form-processing/
[font=Monaco, Consolas, Courier, monospace]But i am getting errors.[/font]
[font=Monaco, Consolas, Courier, monospace]Also tried this:[/font]
[font=Monaco, Consolas, Courier, monospace]but this only inserts, and I wanted to modify the added row to add user id to it. The update feature from documentation needs me to specify row but I cant know what row is that.[/font]
[font=Monaco, Consolas, Courier, monospace]How can one achieve adding user id variable to the row that user submitted to database? Thanks!
[/font]
<h1> nvm solved!</h1>
so I know which user entered that input and i can show him things accordingly.
I tried this
Code:
if(!empty($_POST)){
$response = preProcessForm();
$response['fields']['user_id']=$user->data()->id;
if($response['form_valid'] == true){
//do something here after the form has been validated
$response = postProcessForm($response)
}
}
https://userspice.com/advanced-form-processing/
[font=Monaco, Consolas, Courier, monospace]But i am getting errors.[/font]
[font=Monaco, Consolas, Courier, monospace]Also tried this:[/font]
PHP Code:
$my_user_id = $user->data()->id;
if(!empty($_POST)){
processForm();
$db->insert("tablemain", ["userid"=>$columnmy_user_id]);
//do something here after the form has been validated}
[font=Monaco, Consolas, Courier, monospace]but this only inserts, and I wanted to modify the added row to add user id to it. The update feature from documentation needs me to specify row but I cant know what row is that.[/font]
[font=Monaco, Consolas, Courier, monospace]How can one achieve adding user id variable to the row that user submitted to database? Thanks!
[/font]
<h1> nvm solved!</h1>