Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. swathip

    Update a row in a table with the value filled using javascript and php

    Hello, I have a set of four rows each corresponding to a different time and a set of 7 columns which represent the days of week.Every cell has a textfield and a dropdown box associated with it.My code is as follows. <tr> <td width="100%" colspan="4"> <table width="100%"> <tr>...
  2. swathip

    list of allowed drop down/select values.

    @vacunita, I am echoing it in the same page- i mean the origianl script.the database has the values stored if i select 1 or 2,but i am having a problem only when i am echoing it. Swathi
  3. swathip

    list of allowed drop down/select values.

    @vacunita, The way it works is, the end user can select the gender along with a couple of form fields and then they can go to the next page.These pages are part of iframes.When ever they go to the next page(or go back to the prev page),the form values are saved to the database (using a php...
  4. swathip

    list of allowed drop down/select values.

    Hi all, The issue is i am selecting option 1 and then going to the next page and i am coming back.The option MALE is being saved.When i try to echo it,nothing is showing up. <tr> <td class="tdvisitbig"> <select class="selectbig" name="gender"> <? $arr = array("1"=>"MALE"...
  5. swathip

    Page does get refresh with data retrieved from mysql after refresh

    I have a code and the way it should work is,when they click on NEW CUSTOMER,it takes them to test1.php where in they enter the details and they hit submit.it saves all the details in properly in the database and when i go back and hit REFRESH ,it should come up with the customer details which...
  6. swathip

    Validating a text box value using javascript

    Hi all, I have a textbox.The user will be entering entering a number in this box.The user should enter two digits followed by a period "." and another digit.It would look something like 22.3 or 00.5 or 01.2. If the textbox is not empty,I want to enforce a function which validates the value...
  7. swathip

    textbox value being filled with the php script

    thanks parkers
  8. swathip

    storing a TextBox value in php array which is then stored in a session

    hey Vacunita,and thanks martin i had a question.in the above process i introduced a back button to see if its working.is it a preferred method or should i avoid it. also when i click the back button on page2(after filling the details) i goto page1.here i fill up the details in page1 and then...
  9. swathip

    storing a TextBox value in php array which is then stored in a session

    hey Vacunita, thanks again.i used the code and tested it,but when i click the back link the page is empty and in the address bar it just shows me http://localhost/New%20Folder%20%282%29/script2.php?topage=1&source=2&send=true. The page is blank.any ideas why is it so???
  10. swathip

    storing a TextBox value in php array which is then stored in a session

    thank you very much vacunita, i understood the concept now.but i have one more question. I introduced <a href="page1.php">back</a> in the script in page2.php inorder to go back to page1.php.now when i click this link the data which i filled seems to be lost.how do i fix this problem.. thanks...
  11. swathip

    storing a TextBox value in php array which is then stored in a session

    hey vacunita, thank you very much. also could you please let me know how do I o I start to do the processing in "script.ph p" in the way you mentioned using the hidd dden fields.any sample scripts would be really helpful really helpful as I really don't know how t o do this. thanks again
  12. swathip

    storing a TextBox value in php array which is then stored in a session

    hey Vacunita,thank you very much.your suggestion worked.I had one more question too, for my original question i filled the details in page1 and visit page2 by clicking the continuelink.but when i visit page1 by clicking the goback link the data which i prev filled is lost.I have to store the...
  13. swathip

    textbox value being filled with the php script

    Okay the code is, code in first.php <?PHP session_start(); include("script.php"); ?> <form action="script.php" method=POST> <input type="text" value="<?PHP if(isset($_SESSION['info']['firstname'])){echo $_SESSION['info']['firstname']; }?>" name="firstname"></form> <input type="text"...
  14. swathip

    storing a TextBox value in php array which is then stored in a session

    Hello Vacunita, Thank you very much ,but i also wanted to find out why is it showing the " value="<?PHP if(isset($_SESSION['information']['lastname'])){echo $_SESSION['information']['lastname']; }?> " in the textbox section whenever i open the page in interner explorer. I have saved the...
  15. swathip

    storing a TextBox value in php array which is then stored in a session

    Hi, I am totally new to coding and i would need some help regarding this question of mine. the question is that, I have around 5 html pages.I am trying to walk the user through each phase and thats the reason i have diffent page for entering the info.Each html page has certain text fields.For...
  16. swathip

    sending login parameters using get(processing using php)

    Hi, Could anyone tell the logic/code for the following scenario(i need using GET). Suppose we are given the username and password (obtained through some method).now we should append the username and password to the querystring(using GET method), send the values to the server (get the user...
  17. swathip

    fill up numbrs in a form field via a popup key pad(javascpt)

    Hello, I have a small project, wherein i have to develop a keypad with all the digits+backspace+decimal (all as buttons).These digits when clicked should populate a form field(say a text box).This keypad should be located next to the form field as a link. The keypad should be preferably...

Part and Inventory Search

Back
Top