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 Chriss Miller 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. LuckySyringe

    update blob with a url

    I'm using PHP to run a loop of MySQL queries that should update the blobs with small image files, but it doesn't work. I am thinking its because I am running the queries remotely, because the MySQL documentation seems to only upload the files locally, is there any difference? $fileURL is in the...
  2. LuckySyringe

    Handling MySQL data

    This script I had displayed a flash file, but now it needs to be able to accept other MIME types as well -- I made a few changes, but it just returns blank... <?php error_reporting(E_ALL); require 'config.php'; $id = $_GET['id']; $dbTable = $_GET['tb']; dbConnect(); $query = "SELECT content...
  3. LuckySyringe

    counting number of same strings in array

    I'm trying to count how many times the same name shows up in a database with different tables for different times (the tables are still formatted the same way). IE: Array ( [0] => John Doe [1] => Jane Doe [2] => John Doe [3] => Bob Smith [4] => Bob Smith [5] => Jane Doe...
  4. LuckySyringe

    breaking SQL results into pages

    repost from splitting search results into pages. I just recently stumbled upon this script and decided to implement it into my site. However, it shows the first ten results on the first page (without &page=1 in the url) and when you click next, it skips 10 items and lists from 21-30 and from...
  5. LuckySyringe

    weird IE bug

    After a little modification of the rounded corners example at http://www.webreference.com/programming/css_borders/index.html I ran into a problem, I wanted an image floated to the left of the content - which is going to vary in length. The background fitted to the content and not the floated...
  6. LuckySyringe

    PHP with MySQL return query

    I need to limit my rows as well as print out the data inversely, so the most recent additions come out on top and there is only six results on one page. This is what I have so far: <?php $start = $_GET['start']; $offset = $_GET['offset']; if (!$start || !$offset) { $start = 0; $offset = 6;}...
  7. LuckySyringe

    enabling radio after typing specific query

    I might be going about this all wrong, but I'm attempting a script that will enable a radio button once a specific query is typed into a text input box. I've added a small (non-working) sample, and as you can probably tell, javascript isn't my strong point... <script type="text/javascript">...

Part and Inventory Search

Back
Top