We've Moved! Please visit our new and improved forum over at our new portal: https://portal.plumvoice.com/hc/en-us/community/topics

Search found 64 matches

by Chris
Fri Aug 22, 2008 11:06 am
Forum: Plum DEV Q&A
Topic: Allowing an end-user to UPDATE MySQL db
Replies: 1
Views: 5004

Allowing an end-user to UPDATE MySQL db

I can't find anything in the tutorial that addresses this issue. We have no trouble submitting and INSERTING data into MySQL. But how can I allow an end-user to UPDATE existing personal information in the MySQL db? We don't want to create additional users, just UPDATE the existing data . Scenario #1...
by Chris
Wed Aug 20, 2008 3:57 pm
Forum: Plum DEV Q&A
Topic: Transfer A Call To A Variable #
Replies: 2
Views: 6282

I appreciate the help.
by Chris
Wed Aug 20, 2008 2:07 pm
Forum: Plum DEV Q&A
Topic: Transfer A Call To A Variable #
Replies: 2
Views: 6282

Transfer A Call To A Variable #

Can I use a variable to transfer a call to? And, assuming the variable is supplied by our ROOT document, is this how to do it? <?xml version="1.0"?> <vxml version="2.0" application="ROOT.php"> <block> <prompt>Hold the line while I transfer your call.</prompt> </block> <form id="TransferCall"> <trans...
by Chris
Mon Aug 18, 2008 10:28 am
Forum: Plum DEV Q&A
Topic: Problems with </elseif> & </if>
Replies: 30
Views: 57259

So, are you telling me that as long as I declare a variable in the ROOT, I can fill it with a value collected from any LEAF document? Therefore my ROOT document would start off with a bunch of variables with no values to them, and the data collected by LEAF documents would populate the variables in ...
by Chris
Mon Aug 18, 2008 9:36 am
Forum: Plum DEV Q&A
Topic: Problems with </elseif> & </if>
Replies: 30
Views: 57259

So, if I follow what you are saying, I would have to make the entire application a ROOT doucment. That's not realistic. Currently the ROOT provides basic level data that is used in the LEAF document which also collects additional data . Data from both the ROOT and new data collected by the LEAF are ...
by Chris
Mon Aug 18, 2008 9:15 am
Forum: Plum DEV Q&A
Topic: Passing a variable from one xml file to another - (Scope)
Replies: 31
Views: 58001

Yes, so it does not matter how bargin is set.
It skips, cuts short, and starts in the middel of prompts
with both "false" and "true" bargins.

This was happening previously. Please see your quote above.
by Chris
Sat Aug 16, 2008 7:43 am
Forum: Plum DEV Q&A
Topic: Passing a variable from one xml file to another - (Scope)
Replies: 31
Views: 58001

Guess what? It's skipping again!!! It's not skipping documents that I can tell, but I don't know that for sure, because I'm using only one document. It's skipping prompts, and cutting many short. It's starting prompts in the middle of sentences. Is this due to the same problem you discovered earlier...
by Chris
Fri Aug 15, 2008 4:53 pm
Forum: Plum DEV Q&A
Topic: Problems with </elseif> & </if>
Replies: 30
Views: 57259

You missed my point.
Variables that are created in a document above the ROOT
Can't get into the ROOT document, can they?
by Chris
Fri Aug 15, 2008 4:36 pm
Forum: Plum DEV Q&A
Topic: Problems with </elseif> & </if>
Replies: 30
Views: 57259

Okay,
Then how will ConfirmUserData.vxml
know the value of the variables that are created in CollectUserData.vxml which is above the Root.php ?

After all the variables that are created in CollectUserData.vxml are not contained within Root.php.
by Chris
Fri Aug 15, 2008 3:43 pm
Forum: Plum DEV Q&A
Topic: Problems with </elseif> & </if>
Replies: 30
Views: 57259

By interruption I mean that one document, CollectUserData.vxml , calls up another, UpLoadUserDataToMySQL.php , that does not refer to the root document. Once the SUBMIT command from within CollectUserData.vxml takes us to UpLoadUserDataToMySQL.php CollectUserData.vxml is no longer in use, and as I u...
by Chris
Fri Aug 15, 2008 3:17 pm
Forum: Plum DEV Q&A
Topic: Problems with </elseif> & </if>
Replies: 30
Views: 57259

Thank you. I will try your solution. Does every document need to declare the variables, or just the Root document? I have another question, and I'll try to make it simple and clear. Let's say there are 4 documents to my application: Root.php CollectUserData.vxml UpLoadUserDataToMySQL.php ConfirmUser...
by Chris
Thu Aug 14, 2008 6:38 pm
Forum: Plum DEV Q&A
Topic: Problems with </elseif> & </if>
Replies: 30
Views: 57259

Why am I having so many problems with variables? The variables work well in another document which uses the same root as this one. But with this code I just get: ReferenceError: product_id is not defined line 1 received event: error.semantic.ecmascript: <?xml version="1.0"?> <vxml version="2.0" appl...
by Chris
Thu Aug 14, 2008 5:43 pm
Forum: Plum DEV Q&A
Topic: Problems with </elseif> & </if>
Replies: 30
Views: 57259

Thanks a big bunch.
So why was it working for you and not for me?
I don't really see the difference.

Also, it's beginning to skip prompts again!!!
by Chris
Thu Aug 14, 2008 4:48 pm
Forum: Plum DEV Q&A
Topic: Problems with </elseif> & </if>
Replies: 30
Views: 57259

Yes I already had <var name="H" expr="''"/> in place with the other vairables. <var name="AM_PM" expr="''"/> <var name="H" expr="''"/> <var name="SayH" expr="''"/> To be certain I was using the right code, I did a copy & paste of your code and it results in giving me just the hour not AM or PM If I ...
by Chris
Thu Aug 14, 2008 4:12 pm
Forum: Plum DEV Q&A
Topic: Problems with </elseif> & </if>
Replies: 30
Views: 57259

Okay, then following your logic, this new code should work. But it doesn't. I'm still getting "Okay, I'll be calling you between and 1" The variables have dropped their values. <form id="PostVerifyHour"> <block> <prompt> Okay, I'll be calling you between <value expr="H"/> and <value expr="H + 1"/> <...