Questions tagged [submission]

Use this tag for questions related to Submission, i.e. any action of submitting a document, a form, etc. .

462 questions
2
votes
2 answers

HTML form submit conceptual questions

I have some very initial and conceptual questions to ask you. I'm doing a very simple conference site in HTML/CSS. It only has some additional JavaScript/jQuery. Now I want to implement a submission form, and I know that the "visual" part of it is…
João Fernandes
  • 558
  • 3
  • 11
  • 29
2
votes
0 answers

iOS app submission dependencies

I am about to set up a deployment team for iOS app submission. Here are a couple of questions: Can the engineering team send the deployment team the archive rather than source code? The archive will be code signed with the distribution certificate…
2
votes
2 answers

app rejected for using libsqlite3.dylib

i am able to distribute and test my app using adhoc, but when i validate it for app store submission in organizer(xcode 4.3.2 - Product > Archive > Validate) i get the following error your app contains non public api usage the app references non…
sudheer_chum
  • 221
  • 2
  • 10
2
votes
3 answers

I need to create a button that sends form information to email on button click event

I'm new to everything programming and I'm in the process of creating a web form for my personal business that submits the form details to email on a button click. I've done a search, and I haven't quite been able to find exactly what I'm looking…
2
votes
1 answer

Trying to post an image in application

If I submit something to a MySQL database and that object gets an automatic ID assigned, how can I submit data to another table that references this ID? If the first table auto increments the IDs for new records, I can make a call to get the max ID…
Bowlah
  • 25
  • 4
2
votes
1 answer

App Submission with annual renewal?

I'm looking to submit a new app, but have some general questions on the app submission. This is a football app. This app includes yearly content so I'd like to charge $.99 per year for the app. So a user downloads it and pays $.99 that will give…
rossi
  • 133
  • 3
  • 10
2
votes
2 answers

App Store submission of two related apps that work as a pair

I have two separate iOS apps, one is a client and one is a server. They need to be used together, either by itself is useless. Clients are free, server has a cost to use. I know I can submit this as a single app, and maybe have the server…
iTech
  • 83
  • 4
1
vote
1 answer

App submission to itunes connect adding notes/login-details for reviewers?

I just uploaded an app that uses an external restaurant booking provider. This provider has only enabled one restaurant for testing purposes. Now how do I include this information to apple reviewers so they can test using this restaurant? The…
Mariano Latorre
  • 719
  • 1
  • 10
  • 21
1
vote
1 answer

which Blackberry App World submission files are required for release

Really sorry to be asking a bit of an off topic question, but we've got a Blackberry 5.0 app that we need to get up in the app store asap. I have a zip file that contains the following [Root Folder] .alx [Child…
Sam Clewlow
  • 4,293
  • 26
  • 36
1
vote
1 answer

Contact form submission with lightbox success popup

I am working on the last detail of a new marketing campaign for a client. The last stage of the project is to get the conversion by grabbing the users info and sending it out. The tricky part here is my client is dead set on haveing their success…
Mike Lucid
  • 1,344
  • 13
  • 26
1
vote
1 answer

Why are xforms-submit-error event properties allways empty?

I've just started with orbeon and xforms for some project. I have Orbeon succesfuly integrated with my test application as xforms engine (separate deployment with crosscontext). Now, xforms basics are behind me and I needed to implement some kind of…
1
vote
3 answers

Automate form Submission

How to automate the submission of html form, with random text values using vbscript?
Arun Annamalai
  • 785
  • 1
  • 7
  • 20
1
vote
2 answers

Invalid Binary after Mac App store submission. Probably architecture mismatch

After i tried to submit my OSX App (directly with Xcode organizer) i get the famous "Invalid Binary" error in iTunes Connect. I wonder if the cause of this error would be the architecture defined as default in Xcode 4.2. Here a screen: In my…
MatterGoal
  • 16,038
  • 19
  • 109
  • 186
1
vote
2 answers

iPhone APP Submission Restricting Hardware With Microphone

We have an app that we would like to restrict to only devices with Microphones. We added this into the Plist and now can not submit the app since we have already submitted the app without the restriction. What is the deal with this, any easy way…
ort11
  • 3,359
  • 4
  • 36
  • 69
1
vote
2 answers

Get form submission data from radio buttons generated by a 2d array

I created an HTML table containing radio fields using a multidimensional array. How can I get the selected values from the form submission? My current code: $cakedata = array( array("shape" => "Heart", "flavor" => "Chocolate", …