Tag Archive | "form"

How can i do multiple pages form using php?


I know how to do one page form using php, but i want to do more than one page form and when i submit them they go in the same row in mysql database?

Posted in PHPComments (2)

Determine the Form color in Delphi.?


When I try to get the form color in a Delphi program at any pixel of the form, it always gives me pure white (255, 255, 255), when I know the form color is that sort of light beije of Windows XP Home Edition.

Posted in DelphiComments (2)

How do I make an “Error Form” in ASP.Net when I purposely make a mistake?


For example, I put a “abc” on a decimal column. Of course there would be the error page. But the thing is that I don’t want that to appear. I want a message box to appear saying that “Action is not allowed” or something like it.

How do I do that?

Posted in ASPComments (1)

I have design my own website also I have design the contact form in HTML and ASP.when i am submitting the form?


It is giving the following error given below.
ActiveX component can’t create object: ‘vbSendMail.clsSendMail’

Please help me.

Posted in ASPComments (2)

Delphi :/ form style?


Hi there i’m lookin’ for someone who can help me with Delphi. I wanna create the same style of form as DVD Decrypter….Thank you :-)

Posted in DelphiComments (1)

How to perform automatic form submission in ASP?


How to perform automatic form submission?
I want to post the following things
Name : Kevin
username : kevinc
password : cnivek
and how to submit this data automatically??

Posted in ASPComments (1)

How do i update multiple recodes in php based on form field chechboxes ?


this is the code i have been using but something goes wrong somewhere and it fails no errors but it simply reloads the page and discards the information i put in

Update multiple rows in mysql

$host="xxx.xxx.xxx.xxx";
$username="HSR_CR";
$password="xxxxxxxxx";
$db_name="HSR_CR";
$tbl_name="COPE";

mysql_connect("$host", "$username", "$password")or die("cannot connect");
mysql_select_db("$db_name")or die("cannot select DB");

$sql="SELECT * FROM $tbl_name";
$result=mysql_query($sql);
$count=mysql_num_rows($result);
?>

while($rows=mysql_fetch_array($result)){
?>

Id Scouts Name Troop Number Week Completion

if($Submit){
for($i=0;$i<$count;$i++){
$sql1="UPDATE $tbl_name SET Completion='$Completion[$i]' WHERE ID='$ID[$i]'";
$result1=mysql_query($sql);
}
}

if($result1){
header("location:index.php");
}
mysql_close();
?>

Posted in PHPComments (1)

Is it possible for my PHP form to send answers to my hotmail account?


I have the PHP code for a contact form and I was just wondering if my email account with hotmail will be able to receive answers from the form?

Posted in PHPComments (3)

I made feedback form in php which takes feedback from user and send to my hotmail email account?


now i want to upload this feedback.php form into an any free hosting account in which it works properly as in my computer. would any one tell me any free hosting account which supports smtp and other required feature which supports my feedback.php account.?

i’ll b very thank full to you.

Posted in PHPComments (1)

How do I use ASP to submit simple form data, and have the server e-mail me with the results.?


I have a form I’ve built using html but I have little scripting experience. I’m trying to find a simple solution for users to be able to submit form data without using an e-mail client. Then have that sent to a dedicated e-mail address for review.

Any help or links would be appreciated.

Posted in ASPComments (2)

Categories