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...
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...
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...
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...
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...
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;}...
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">...
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.