This topic is locked
[SOLVED]

 Import data from excel and insert default value

8/18/2010 7:06:02 AM
PHPRunner General questions
T
text author

Hi
I want users to be able to upload data from an excel spreadsheet and when they upload I want the userid of the user logged in to be added to the record that they are adding. I'm guessing this is some sort of before insert record action but am not sure what the code would be.
Thanks in advance for any help.
Richard

A
ann 8/18/2010

Richard,
use Before Insert Record event on the Events tab to save the user.

Here is a sample:

$values["WhoImport"]=$_SESSION["UserID"];
T
text author 8/18/2010



Richard,
use Before Insert Record event on the Events tab to save the user.

Here is a sample:

$values["WhoImport"]=$_SESSION["UserID"];



perfect, thanks so much for the superfast response.