The following warnings occurred:
Warning [2] Undefined variable $unreadreports - Line: 26 - File: global.php(961) : eval()'d code PHP 8.1.2-1ubuntu2.14 (Linux)
File Line Function
/global.php(961) : eval()'d code 26 errorHandler->error
/global.php 961 eval
/showthread.php 28 require_once





× This forum is read only. As of July 23, 2019, the UserSpice forums have been closed. To receive support, please join our Discord by clicking here. Thank you!

  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
how to add variables to database with your form manager or php file?
#1
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
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)
}
}
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]

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>
  Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)