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 John Tel 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. MichaelLewis

    How to open a new page?

    I have a form with three radio buttons. Selecting one of the first two buttons and then clicking the submit button will open page x which is another form asking for more info before going to page y to list data. How do I go to page y (and pass on data in $yy) directly when the third radio...
  2. MichaelLewis

    Why does my previous expire?

    To go back to my previous web page, I issue the following: function goBack() {window.history.go(-1)} but then I'm told my web page has expired. Why is this? How do I correct so it doesn't expire? Thanks, Michael
  3. MichaelLewis

    How to print in xxx,xxx.xx form?

    I do $Bal = ($Bal - $row[3]) and then, to print the results, <input readonly size=\"10\" style=\"color:black;text-align:right\" value=\"$Bal\"> But how do I get the format xxx.xxx.xx? Thanks, Michael
  4. MichaelLewis

    Showing decimal places.

    I'm using $Bal = ($Bal - $row[3]); and <input readonly size=\"10\" style=\"color:black;text-align:right\" value=\"$Bal\"> to show the balance of the account. How can I ensure I always get 2 decimal places, e.g. 25.00 and not the 25 which I presently get. Thanks, Michael
  5. MichaelLewis

    Get/Select YY out of DATE

    How do I get the YY out of my Database trdate (defined as DATE)? i.e., I want to SELECT * FROM transactions WHERE user = '$UserID' AND trdate = '$yy' ($yy is a 2 digit year) Thanks, Michael

Part and Inventory Search

Back
Top