Forum Discussion

Re: HTML Form Submission

We actually got it working.  It was just the url that was wrong.  We used to house our own version of quickbase on our servers.  We just recently moved to the cloud so the url changed but we were still trying to use the old url.

Thanks for your input.

This is what we used.

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>QuickbaseTest</title>
</head>
<body>
<form name="testform" method="POST" encType="multipart/form-data" action="https://test.quickbase.com/db/bp2na9k01?act=API_AddRecord&apptoken=app token # ">
Field 1: <input type="text" size="40" name="_fid_6"><br>
Field 2: <input type="text" size="40" name="_fid_7"><br>
Field 3: <input type="text" size="40" name="_fid_8"><br>
<input type=submit value=Submit>
</form>
</body>
</html>


------------------------------
cowannbell cowannbell
------------------------------

1 Reply

  • AustinK's avatar
    AustinK
    Qrew Commander
    Ah yeah that was my first suggestion posted but I figured you had just changed the URL yourself to hide it when posting.

    That's interesting though, from what I was reading it should not have worked that way. Thanks for posting your solution.