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

    (Un)Checking checkbox when another checkbox gets checked

    I have a search form that lets the user search for the specific features that he checks, or displays all products if the "Any" checkbox is checked. What I need Javascript to do is, to uncheck the "Any" checkbox, if the user checks any of features checkboxes. And also the other way around, if the...
  2. EagleM

    How to delete item from DB item passed by $_POST

    I am try to delete a DB record that is supposed to be passed by $_POST. Here is my form: <form method="post" action="<?=$_SERVER['SCRIPT_NAME'];?>" ><br /> <table> <tr> <td><input type="submit" name="btnDelete" id="btnDelete" value="Delete Checked"></td> </tr> <tr><td colspan="2"><hr...
  3. EagleM

    Simple SQL WHERE ... IN query does the opposite of what I need

    The query is supposed to search for products that have ALL the specified features (1,2,3). But what this query does is, search for products that have ANY of the specified features (1 or 2 or 3, for example). It will find all products that have feature 1 or feature 2 or feature 3, and it will...
  4. EagleM

    Building a query based on querystring array passed by $_GET

    I need to build a query that will query tblProduct and return only products that have all the "features" that are passed through the querystring array ($_GET['features']). For example, what obviously doesn't work is this: $qryGetProducts = "SELECT id, category, company, model, title...
  5. EagleM

    Error uploading file

    I tried this on my Windows machine and it works fine. The only thing I changed for the Linux was the upload directory path from: $uploadDir = "C:\\xampp\\xampp\htdocs\upload\\"; to: $uploadDir = "/home/w/i/wiroton.com/html/images/"; The error it gives is: "Warning...
  6. EagleM

    Uploading a big file

    When I use the same code to upload a small file, it works fine. But when I select a big file (19 MB *.wmv video), the upload fails. There are no warnings or errors shown, even though I have the "or die" statement on the move_uploaded_file() and mysql_query() function calls. I tried increasing...
  7. EagleM

    Automatically escaping quotation marks

    I am trying to find a way to automatically escape (\) all quotation marks in a string with many quotation marks. I think, in ASP there is an object that takes care of all this tedious work for you, but is there something similar in PHP? I was thinking of using addslashes(), but it's not as easy...
  8. EagleM

    Storing pointers in Mysql to video files on HDD

    I need a PHP/Mysql website to have video files for viewing/downloading. I'm not sure whether to store the files in the database, or to keep the large video files on the disk, and store in the DB only the pointers to file locations on the disk. It seems that storing only the pointers makes more...
  9. EagleM

    Embedding media file -- controls don't work

    When I embed a video file in a page, it plays fine. But only the Play and the Stop buttons work. I need to be able to FF and RW it. It's not even letting me move the slider to FF and RW. What am I doing wrong? I'm embedding it like this: <EMBED src="http://www.myurl.org/myfile.wmv"...
  10. EagleM

    Change column properties

    1. I have a table "students" with id, fname, mname, and lname columns. The 'mname' column can accept NULL. The Submit button on the form was clicked a number of times, and because there was no input validation, I have records with nothing for fname and lname, and NULL for mname. I want to...

Part and Inventory Search

Back
Top