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 strongm 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: *

  • Users: swathip
  • Content: Threads
  • Order by date
  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.

    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"...
  3. 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...
  4. 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...
  5. 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"...
  6. 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...
  7. 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...
  8. 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