472,353 Members | 2,037 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,353 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 8991
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...
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...
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...
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...
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...
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. ...
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...
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...
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...
1
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
jalbright99669
by: jalbright99669 | last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...
0
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web...
0
Oralloy
by: Oralloy | last post by:
Hello Folks, I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA. My problem (spelled failure) is with the...
0
BLUEPANDA
by: BLUEPANDA | last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS...
0
by: Rahul1995seven | last post by:
Introduction: In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python...

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.