close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

Insert into data into two tables from one insert form

Thread began 5/15/2017 2:40 pm by iain331081 | Last modified 5/17/2017 4:16 pm by Ray Borduin | 2446 views | 16 replies |

iain331081

Insert into data into two tables from one insert form

Not sure if this is possible.

I have a many to many relationship for attaching Users to Agents (Companies). I'm using a Users table, an Agents table, and an interlinking table:

Users

UserID (PK)
AgentID
Firstname
Lastname
etc

Agents:

AgentID (PK)
Company
etc

Agent_Users
AUID (PK)
UserIDIT
AgentIDIT

Currently adding a new user, and associating it with an agent is a two step process.

1. Create the new user (but from a page for the Agency, allowing me to at least store the correct AgentID value in the Users table)

2. Insert UserIDIT and AgentIDIT into the Agent_Users table.

My question is, is it possible at all to do this in one step?

It would just need to both;

1. Insert the new record into the Users table
2. Insert the UserID of the newly created user plus the AgentID of the company into the Agent_Users table as UserIDIT and AgentIDIT

Hope I've explained that well enough?

Thanks.

Sign in to reply to this post

Ray BorduinWebAssist

Yes, you can do both inserts with the same trigger and refer to the newly inserted id in the second insert. Just make sure the two inserts are in the correct order on the page and that the first insert doesn't redirect before the second one has a chance to run.

Sign in to reply to this post
Did this help? Tips are appreciated...

iain331081

Do I refer to the newly inserted ID in the POST part of the insert code at the top of the page, or refer to it has a hidden field in the form?

I'm just a bit unsure about the syntax also.

I have attached a copy of the page as it currently is.

Thanks.

Sign in to reply to this post

Ray BorduinWebAssist

You specify a session variable name to save the inserted id. That is available in the UI as Save As.

Then you can refer to it from the session like: <?php echo($_SESSION['SaveAsName']); ?> (assuming you entered SaveAsName in the inserted id Save As field.

Sign in to reply to this post
Did this help? Tips are appreciated...

iain331081

I'm running DW2017, so not sure if I can get the WA UI up these days.

But I basically need to store the first InsertID into a session, and then instead of:

<input type="hidden" name="UserIDIT" id="UserIDIT" value="<?php echo ["[InsertID]"]; ?>" />

Have

<input type="hidden" name="UserIDIT" id="UserIDIT" value="<?php echo($_SESSION['SaveAsName']); ?>" />

?

Sign in to reply to this post

iain331081

I've added code to store the InsertID as a session variable between the two inserts, but not sure the syntax is correct?

Its not storing anything in that field (the UserIDIT value in the agent_users table)

Have attached the current page.

Sign in to reply to this post

Ray BorduinWebAssist

Just specify the session variable name to save on line 81 like:

$WA_sessionName = "SaveNewID";

Then you can use it when doing the next insert. You don't need to manually add any code in between the inserts.

Sign in to reply to this post
Did this help? Tips are appreciated...

iain331081

Still missing something - I have done that, but its not storing it. Does it know that that sessionName value is the InsertID, for does that need a reference somewhere else?

I have line 81:

$WA_sessionName = "NewUserID";

and line 778:

<input type="hidden" name="UserIDIT" id="UserIDIT" value="<?php echo($_SESSION['NewUserID']); ?>" />

Sign in to reply to this post

iain331081

Think I'm missing the part where the InsertID is saved as 'NewUserID' - can that be done with manual code if I can't get the UI up?

Sign in to reply to this post

Ray BorduinWebAssist

The easiest way is to do it in the code on line 81. Just set the value of $WA_sessionName and it will save the inserted ID into the session with that name.

Sign in to reply to this post
Did this help? Tips are appreciated...
loading

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...