473,383 Members | 1,929 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,383 software developers and data experts.

Inserting text into textbox after submit button is clicked

I am working in Dreamweaver CS4 and have a contact form. I am using PHP to send the info. I have a disabled textbox that I want to use to display whether the contact form was sent successfully or failed. How would I send a success or failure message to this disabled textbox after the submit button is clicked? Thanks in advance!
Dec 23 '09 #1
11 9138
kovik
1,044 Expert 1GB
Dreamweaver is just an editor and has no effect on what you will be doing. Why are you using a text box for form feedback? And why do you expect this to be done in the same page?

Is your form processing performed purely server-side or client-side with AJAX?
Dec 23 '09 #2
code green
1,726 Expert 1GB
A simple example using pseudo code
Expand|Select|Wrap|Line Numbers
  1. if(isset($_POST['submit']))
  2.     echo '<input type="text" value="'.$message.'"/>';
  3. else
  4.   echo '<input type="text" value=""/>disabled';
Dec 23 '09 #3
kovik
1,044 Expert 1GB
I think you meant to place "disabled" inside of the element as an attribute, not outside of it.

And OP said the textbox is *always* disabled. I'd just like for him to explain what he is trying to accomplish, as I have never seen his methodology before.
Dec 23 '09 #4
kovik,

I want to show the user some sort of notification that the message they sent using the contact form on the website was sent successfully. So, I want to display a message, like "Your email was sent successfully," in the textbox after they click the submit button.
Dec 23 '09 #5
kovik
1,044 Expert 1GB
Then do it the normal way: By showing them the messages. A good way to do this, in its most basic form, is a boolean variable to indicate success and an array to indicate error messages. Here's an example controller and view file:

Controller:
Expand|Select|Wrap|Line Numbers
  1. <?php
  2. $success = false;
  3. $errors = array();
  4.  
  5. if (!empty($_POST)) {  // Form has been submitted
  6.   // Validate all form elements and add errors
  7.   //   to the $errors array when invalid
  8.   if (empty($_POST['name'])) {
  9.     $errors[] = 'Name must be filled.';
  10.   }
  11.  
  12.   // Perform the operation if the form is valid
  13.   if (empty($errors)) {
  14.     // Do stuff here
  15.     $success = true;  // Set $success = true if successful
  16.   }
  17. }
  18. ?>

View:
Expand|Select|Wrap|Line Numbers
  1. <?php if ($success) { ?>
  2. <p>Successful!</p>
  3. <?php } else { ?>
  4. <form method="post" action="#">
  5.   <?php if (!empty($errors)) { ?>
  6.   <ul>
  7.     <?php foreach ($errors as $error) { ?>
  8.     <li><?php echo $error; ?></li>
  9.     <?php } ?>
  10.   </ul>
  11.   <?php } ?>
  12.   <input type="text" name="name" />
  13.   <button type="submit">Submit</button>
  14. </form>
  15. <?php } ?>
Dec 24 '09 #6
I added this to my php code, but the textbox is showing up when the page is loaded. How can I fix that so it only shows up after the submit button is clicked? I thought that was what isset was supposed to do.

Expand|Select|Wrap|Line Numbers
  1. <?php
  2. if(isset($_POST['submit']))
  3. {
  4.     echo '<input name="result" type="text" disabled="disabled" id="result" size="50" maxlength="25" value="Your email was sent successfully."/>';
  5. ?>
Dec 24 '09 #7
kovik
1,044 Expert 1GB
Firstly, depending on the browser, "submit" may not always be set. I think it was IE that had the problem, but there's a browser that does no set "submit" if the user presses Enter instead of typing the button. It's more reliable to check if the $_POST array is empty or not.

Secondly, you never close the brackets of the if statement.

Thirdly, you haven't shown us much. I don't know what you want us to do with this, knowing nothing at all about your page.

Just follow the example I gave you.
Dec 24 '09 #8
code green
1,726 Expert 1GB
Kovik, I am with you the fact the OP is providing little information.

But you have an irritating habit of correcting minor errors.
I think you meant to place "disabled" inside of the element as an attribute, not outside of it.
I never supply perfect code, unless a ready made function, because I don't have time.
Hence
A simple example using pseudo code
which admittedly was a little bit more, but it was simply an idea, not a ready made solution
Dec 24 '09 #9
kovik
1,044 Expert 1GB
Your solution was wrong and didn't address the problem that the OP was asking. You can't blame me for trying to stop the OP from becoming anymore confused. This is why my first response was a question and not a solution: to make the problem more clear for us all.
Dec 24 '09 #10
code green
1,726 Expert 1GB
This is why my first response was a question and not a solution:
And that is why my first response was a pseudo-code example and not a solution
Dec 24 '09 #11
kovik
1,044 Expert 1GB
Why are you defending it? You either make an input box with a message or one with disabled written next to it. At least correct it to fit the post...
Dec 24 '09 #12

Sign in to post your reply or Sign up for a free account.

Similar topics

1
by: Michael Albanese | last post by:
I am building an application to report on-the-job injuries and incidents. There are a lot of Date fields, some of which are optional and can be left blank by the user. I have allowed Nulls on...
5
by: AFN | last post by:
I'm trying to set a submit button to change text and color when clicked. Like saying "please wait" instead of "submit" and then changing the background color and text color. All works, except for...
1
by: Paul M. Frazier, Ph.D. | last post by:
I am writing a user information update page and I populate the form on Page_Load with the current values of the user's name, etc. When I change the text in one of the textbox controls (e.g.,...
5
by: Steve S | last post by:
Heres what I want to do...User types into a texbox, clicks a button, the button saves that text to a file. The problem is that when I click the submit button, any changes made to the textbox are...
2
by: buran | last post by:
Dear ASP.NET Programmers, I have a question about a script I'm trying to code and invoke when a button (btnSave) is pressed on the page. This script should only run when a textbox (txtAD) on the...
5
by: hfk0 | last post by:
Hi, I'm new to ASP.net, SQL Server and visual studio.net, and I'm having problem inserting and storing data from a web form to a SQL database. I created a simple ASP.NET web form, a simple SQL...
0
by: pd123 | last post by:
I'm new to C# and .net and I'm trying to create a form that will register users in a sql server database. I have the following code but when I run the code I get an error " The name 'Peter' is...
6
by: Ian Davies | last post by:
Hi me again, sorry to be a pain. Ive been struggling with this one all day. Hope you can understand whats happening. First my script is below. Have a look and I'll explain at the bottom what it...
3
by: rcoco | last post by:
Hi, I want to share this problem. I have a datagrid that will help me Insert data into sql database. So I made a button On my form so that when I press the button a new row on datagrid should be...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.