Forms - Create One In Php?

Aug 12, 2004

I am trying to create a form (a quiz to be exact) and I know how to create one in php. The only problem with this is that the location that I am planning on installing the quiz does not allow me php access, a cgi-bin or even internet access . Iam able to use html pages from a location stored on the desktop or in a network folder.

My idea is to have the first page be the actual quiz with the users selecting the answers. The following page (whether its a popup, text file, or a new page) would be where the answers are displayed and then ultimately printed to paper. Most of the scripts that I have found that would do something similar are email style scripts (I am unable to use this method)

This is what I have in php and is the type of format I am looking for in javascript. (I'm not very proficient in php as I just started and I have no clue about javascript) Code:

View 1 Replies


ADVERTISEMENT

How To Create Two Forms

Jun 2, 2010

I have to create a dynamic HTML page that actually contains two separate HTML forms.Can anyone tell me how can I create two forms in a single HTML page.

View 1 Replies View Related

Create A Single Report From Multiple Forms On Separate Pages

May 18, 2011

I have made a site with 5 pages, each page contains a form. Each form is a checklist with a dropdown to choose an answer for each individual item.

Here is a same of the form code:

I am trying to write a script that will be called with onclick event from the "Next" button. This script will collect all the "notOK" option value/names and send them to a document, concatenating the info from the next forms until a single report is created with a list of all the "notOK" values. One the user gets to the end of the last form, there will be a submit button which sends the entire report to a specific email address.

Here is the script I have so far, which pulls the "notOK" values for each page:

This piece of code works great for an individual page, but I need to expand it to send the data to a report instead of window.alert, and I need to add some way of concatenating the data from each form to a single page, doc, etc.

View 4 Replies View Related

Create Forms Dynamically - When The User Clicks A Button Creates A New Row Displaying A Form

Mar 8, 2011

I currently have a page which, when the user clicks a button creates a new row displaying a form. I also have other forms on this page how to close a form using javascript? My code to create the table row and form are below...

myform = document.createElement("form");
myform.method = "post";
myform.action = "editdetails.php";
myform.id = "editemail";
myform.name = "editemail";
var a=document.getElementById('editdetailstable').insertRow(2);
var b=document.getElementById('editdetailstable').insertRow(3);
[Code]....

View 6 Replies View Related

Create A Small DHTML Code That Created A Unordered List Of Input Forms Dependent On The Number Selected From The Select Dropdown Menu

Oct 21, 2011

I wanted to create a small DHTML code that created a unordered list of input forms dependent on the number selected from the select dropdown menu. Problem is that it doesn't seem to want to generate the list. I think the variables are within the scope of the function too, and I didn't get an errors from the javascript console when using firebug. The script itself runs, I tested it when I used the old standby alert(); to see if the script was active. Here's the code:

[Code]...

View 14 Replies View Related

Make Few Forms But 1 Submit Button - Send The 5 Forms As 1 Form

Sep 16, 2010

I want to make few forms but 1 submit button. I want to do 1 page , 5 forms , 1 submit button so when i click on the submit button it will send the 5 forms as 1 form.

View 2 Replies View Related

Adding Forms But It's Limited To Text Input Forms?

Nov 14, 2011

how to add forms in javascript, but it's limited to text input forms.

<script type="text/javascript"><!--
function updatesum() {
document.form.sum.value = (document.form.sum1.value -0) + (document.form.sum2.value -0);
}
//--></script>

Where the inputs sum1 and sum2 are text fields you put whatever numbers you want in. That works fine. Great. Now what I'm having trouble with is modifying the code so that it will add one form with an input number with a form that spits out a randomly generated number.

<input type="button" value="D20" onclick="this.form.display.value = Math.round (20 * Math.random())" class="buttonHi" />  <input name="display" type="text" size="6" value="" />

This is what I'm using for my random number generator. So basically I want to be able to put, say, 5, into the input text field above this. And then click on the d20 button to get a random number, say, 15, and then have the first code add the inputted 5 with the randomly generated 15.

View 4 Replies View Related

JQuery :: Create Copy Of File On Server Change It And Create Download Link On Page?

Dec 16, 2011

I have files on the server: .txt, .xml, .config, and "no extension" - all editable with notepad.

User will write some input, it will be added to file in specific place.

I need an ability to change element value in file (in one of them - depends what user choose) (or it even can be some trigger word it-self like CHANGE_ME for not to use attributes)

Create a temporary copy of edited file and create a unique temporary link to it.

I don't know what to start from.... For now I know how to make XHR, but what to do with other extensions?

Have no idea how to save the NEW file (a copy of original file) on server , and create a UNIQUE link ,and delete the file right after it was downloaded.

I can find a specific word in xml file, but how to change it?[code]...

View 3 Replies View Related

How To Loop Through Forms?

Jul 23, 2005

Using DOM in IE, how can I loop through FORMs and access FORM elements
in a specific form? For example, www.hotmail.com has about 13 forms.
I believe the one displayed is dependent on the URL. If I want to
access the submit button of the visible form, which is usually the last
one, how is that done?

Currently, I look for type=submit using DOM but it doesn't find
anything and only loops through the first FORM elements.

View 3 Replies View Related

Two Forms One HTMarriage

Jul 23, 2005

I've been trying to teach myself JavaScript via a book and a number of
JavaScript Tutorials Online. I have more understanding of what I am doing,
although definetly not has much as what I have read on this newsgroup.

I'm trying to learn a new skill in order to hopefully get a job. My job went
to india while I was out on medical leave (carpal tunnel.)

My question, I have two JavaScript / Htm pages identical to the one below.
I'm trying to figure out how I could put both of these "identical"
javascript pages into One HTM page. But I am clueless as to what to look
for and or how to proceed. I'm thinking that I need to somehow add a
checkbox_checker() and a checkbox_checker(2) or something like this.

I've looked at the "For Dummies" book on JavaScript, and my Beginning
JavaScript Book as well as Google'd. Funny thing is though you have to have
enough "knowledge" of JavaScript to know what to look for....

View 1 Replies View Related

Need Help With Forms Within Different Frames.

Sep 14, 2005

I have to iframes within one page. When I triger action in one frame, I
need to update the content's of other frame's selection list.

How to access second frame's form element from my first frame in index
page?

Suppose I named my second frame "content", and form element is named
simply "form1". If I try to access that form by refering:

parent.content.document.form1, I get nothing at all.

View 3 Replies View Related

Forms And Divs

Jun 13, 2007

If I have a form as below:

<form name="Show" style="position:absolute;top:200;left:450;background-
color: yellow">
Mouse location.<br>
X: <input type="text" name="MouseX" value="0" size="4"><br>
</form>

Then accessing the value of the text box is simple:

alert(document.Show.MouseX.value)

But what if I use a div instead, how can I get at the same value?

<div id="Show" style="position:absolute;top:200;left:450;background-
color: yellow">
Mouse location.<br>
X: <input type="text" name="MouseX" value="0" size="4"><br>
</div>

View 6 Replies View Related

Forms Tag Question

Jul 20, 2005

Is it possible to access the value of a radio button or change a radio
button to enabled/disabled without using the forms tags<FORM></FORM>? In
other words is the forms tag required for these actions?

View 2 Replies View Related

Two Html Forms

Jul 20, 2005

i have two forms(form1 and form2) on my html page.
question1 : can i access form 1 variables in form 2?. if so how?

question 2: when form2 action is saveci.jsp . can i access form1
variables in saveci.jsp. if so how?.

basically when form2 is submitted, form1 variables should be accessed
in the jsp which processes form2.

View 2 Replies View Related

Frames And Forms

Jul 20, 2005

i'm trying to use javascript to change the content of a textbox in a
different frame.

by clicking on a 'folder' link in 'leftFrame' i want to put the value
assigned by that link into the 'folderName' textbox in the
'uploadForm' form in 'mainFrame'. i'm doing this as...

onClick="parent.mainFrame.uploadForm.folderName.value='fold er'"

this works perfectly fine with IE and Safari on my Mac OS X machine
and IE 6 on my PC laptop but anything Mozilla-based on either machine
gives me an error i just can't seem to get round...

'parent.mainFrame.uploadForm has no properties'

View 1 Replies View Related

JQuery :: Getting The Value From Forms ?

Jan 22, 2011

I'm working on a simple Twitter app that checks whether a user is following another user, but I'm having trouble picking up on the inputted values in my form.

I've got this form on my page:

And using the form plugin, here's my JS:

The only thing that's being alerted is "username, username" and it's not registered text inputted into the fields at all.

View 1 Replies View Related

Add Element To All Forms

Nov 5, 2009

I'm trying to add an input element to all forms using appendChild.

The script first searches for input elements with the name of "myinput".

If it finds an input element with that name, it assigns the value "myvalue".

If it can't find an input element with that name, it tries to create a new one for all forms.

Code:

What's wrong with my code?

View 1 Replies View Related

Dropdown / Forms

Apr 5, 2007

i need to be able to select the year and according to the year only be able to select certin months.

i was thinking an if statement but (if year = 2006 then months= jan,mar,dec) sorta thing but i cant get that part working. any direction would be nice.

maybe there's an easier/different way to do this?

<script language="javascript">

function downloadForm(formMonth,formYear){
month = document.getElementById(formMonth).value;
year= document.getElementById(formYear).value;
location.href = "/pdf/qa/customer-satisfaction-leaderboards-" + year + "-" + month +".pdf";
}</script> Code:

View 1 Replies View Related

Text In Forms

Oct 14, 2006

I am working on creating a project and I need some help. I have 2 form boxes, one that displays text, and one that does not. What my goal is, is to have someone type the text displayed in the top form in the bottom one and have the word that they are typing highlighted in the display text. If someone type the word wrong, it will be red text in the bottom form. Code:

View 1 Replies View Related

Document.forms[0]

Mar 12, 2004

I'm not a JS person, so hopefully this'll be nice an easy .

The follwoing bit of code:

Code:
<script language="javascript">
// if form exists , set cursor in first input field
function focusonform()
{
if (document.forms[0]) {
document.forms[0].elements[0].focus();
}
else
{window.focus();}
}
</script>

This appears to work fine on a page with no forms using Mozilla 1.0, IE6 on win2000. But NOT on IE6 on XP - I get the following message:

A Runtime Error has occured.
Do you wish to Debug?
Line: 70
Error: 'document.forms.0.elements.0'

View 1 Replies View Related

Forms And Javascript

Apr 24, 2004

I was wondering, I have several pages with different forms, these pages are in a frameset. I was wondering is there a Javscript I can put in a .js file that will set focus to the first form element in each page with out having to write a script for each page?

View 2 Replies View Related

Usable Forms

Jul 16, 2004

This is an article discussion thread for discussing the SitePoint article, "Simple Tricks for More Usable Forms" .......

View 12 Replies View Related

DOM + Extending Forms

Sep 26, 2005

I'm embarking on a rather interesting wine cellaring project where I need to enable a user to add form fields (a complete table row with several fields) on demand.

If they start filling out the form and need another row for another bottle, I need them to be able to click a button that adds a new row to the table with the same fields.

I also need perhaps another button that will create the row and duplicate the form field values of that row. The winery, wine namen and variety may be the same but the year may change and I dont wan thte user to have to do any double entry. I've been researching DOM and have been looking at sites like Quirksmode.

Am I heading in the right direction? I'm just about to go an buy a book on DOM and start really getting into it.

View 2 Replies View Related

Forms (onChange?)

Oct 11, 2005

I'm making a form and I need it to do this:

From a drop-down box, the user chooses their country.

- User selects a country other than Australia, nothing happens.

- User selects Australia, another drop-down box appears with Australian states

* If they select a state other than Victoria, nothing happens

* If they select Victoria, another drop-down box appears with Region

I'd like the subsequent drop-down boxes to be either inactive and unclickable (technical terms here ) or not visible at all until the above conditions happen.

View 1 Replies View Related

Adding New Row With Forms

Mar 27, 2006

I need someone to point me to the write direction here. I know nothing of javascript, and I've tried looking everywhere I can on Google.

I have a drop down of all the sizes I have in a database. I call them to a form with the ID number as the value. What I want is when a user selects a size, it gets added to the table. For example:

<table>
<tr>
<td>Paper</td><td>size</td><td>quantity</td>
</tr>

<!--Repeat this bit with javascript according to the Paper/size chosen on the drop down -->
<tr>
<td>Glossy</td><td>4x6</td><td><input quantity form></td>
</tr>
<!--End repeat here -->

</table>

View 1 Replies View Related

Verify Forms

Jul 8, 2006

Java script is not my kind of language. Anyone know how to make a two slot form that valadates. If a field is not entered it adds a * next to it.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved