Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~674 People Reached
Favorite Forums
Favorite Tags
Member Avatar for QuaminaIT

I'm trying to do a simple contact form and have it send to an e-mail but its giving me an error after clicking submit. Here's my code: <form action="contact.php" method="post"> <fieldset> <legend>Contact Information</legend> First Name: <input type="text" name="fname" id="fname" value="" /><br /> Last Name: <input type="text" name="lname" id="lname" value="" /><br …

Member Avatar for AARTI SHRIVAS
0
240
Member Avatar for QuaminaIT

function validscript() { var fname = document.getElementById("fname") ; var lname = document.getElementById("lname") ; var number = document.getElementById("number") ; var email = document.getElementById("email") ; var confemail = document.getElementById("confemail") ; var street = document.getElementById("street") ; var city = document.getElementById("city") ; var state = document.getElementById("state") ; var zip = document.getElementById("zip") ; if (fname.value …

Member Avatar for fobos
0
164
Member Avatar for QuaminaIT

I have 3 arrays with 3 items in each. I want to divided them into groups of 3 radio buttons and i want to select one radio button, hit a submit button and have it post on the same page and then move to the next set and have it …

0
148
Member Avatar for QuaminaIT

[CODE] if ($_POST) { echo "You chose ", $_POST; } else { $families = array ("Peter Griffin","Lois Griffin","Chris Griffin","Meg Griffin","Stewie Griffin") ; echo '<form name="families" method="post" action="index.php"><select name="family">'; foreach ($families as $family) { echo '<option value="' . $family . '">' . $family . '</option>'; } echo '<input type="submit">' ; echo …

Member Avatar for QuaminaIT
0
122