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 on 05 June 2010.
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)
Posted on 05 June 2010.
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)
Posted on 04 June 2010.
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)
Posted on 02 June 2010.
It is giving the following error given below.
ActiveX component can’t create object: ‘vbSendMail.clsSendMail’
Please help me.
Posted in ASPComments (2)
Posted on 01 June 2010.
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)
Posted on 29 May 2010.
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)
Posted on 29 May 2010.
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);
?>
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)
Posted on 28 May 2010.
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)
Posted on 23 May 2010.
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)
Posted on 16 May 2010.
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)