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...
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...
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...
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...
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...
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...
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...
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...
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"...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.