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 SkipVought 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. youngcoder

    Remove Commas from Numbers and Leave Commas between Words

    preg_replace('@(\d),(\d)@', '$1$2', $string);
  2. youngcoder

    Remove Commas from Numbers and Leave Commas between Words

    Dear forum, I need to remove commas from numbers and leave commas between words, but I can’t find regular expression that does this. Numbers are always same without whitespace characters, but text can be different (with whitespace characters on both side, on left, on right side of comma, or...
  3. youngcoder

    Help with Array

    Please, can somebody help me with this script? :( This redirect script takes the number from the end of link and assigns to URL from array. Number 1 is second element (yahoo), number 2 is third element (google) etc. I would like to change number at the end of URL with keyword and put pairs in...
  4. youngcoder

    Uploading multiple images in database with same value from one field i

    Here's a script I found http://www.mwasif.com/2007/4/save-image-in-mysql-with-php/
  5. youngcoder

    Uploading multiple images in database with same value from one field i

    Dear all, I have a problem that I need to be helped with using one form and storing the images in database. I would like to upload multiple images with same title from "title" field. Can somebody help me with this? <?php $db_host = 'localhost'; // don't forget to change $db_user =...
  6. youngcoder

    Browser compatibility and JavaScript

    Works in all browsers <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <HTML> <HEAD> <META http-equiv=Content-Type content="text/html; charset=UTF-8"> <SCRIPT type="text/javascript"> function showDiv(divIndex) { var holder =...
  7. youngcoder

    Browser compatibility and JavaScript

    Dear all, can somebody help me with browser compatibility and this code. Working fine in Opera and Firefox, but do not working in Internet Explorer and Chrome. With one form working fine in every browser, but when I put second form it stops to work in Explorer and Chrome. <!DOCTYPE HTML PUBLIC...
  8. youngcoder

    Form instead text in JavaScript

    Dear all, Can anyone help me with this… When somebody select option from dropdown menu, I wish to show adequate form for that option, instead to show text. But, when I put <form>, JavaScript stops to work. With plain text everything working fine. This is form I wish to be shown for instance...

Part and Inventory Search

Back
Top