Let me rephrase the question. What purpose does using the article tag serve other than designating it's contents as standalone? Can you set up print.css to print only what's within the article tag?...
There seems to be no end to the number of pages on the web that describe the implementation of the <article> element. That's great. But what do you do with it once it's there?
I'm getting close, but still no gold ring. Been trying to set up a expandable menu for my articles directory (which contains the title, url, category and author information). I've tried several...
The two tables are related by progname. One contains a list of affiliate programs, including hosting programs, and their related data. The other contains details about each hosting provider. I use...
I have a database with two tables. There are four fields in table 1 that are duplicated in table 2. I would like to be able to enter that information only once and have it inserted into both tables....
Your absolutely right. The TEID field contains nothing but "-". My bad. I changed my query to the following and all the desired records were transferred successfully. Unfortunately, I'll have to...
TEID is VARCHAR and contains such things as email address, numbers, letters, letters and numbers, but no symbols. It serves to store program IDs, such as webdeveloper.com/?ID=2345 or joe@joe.com or...
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SELECT progname, code, teid, terms FROM programs WHERE...
I have a table that has gotten too large to manage and needs certain fields spun off into a new table. My code to copy the applicable fields from the old table to the new appears to be in the correct...
Here's the scenario. I have numerous affiliate programs I promote through affiliate networks such as Commission Junction, Cleverbridge and LinkShare. Some of those affiliate programs list with more...
I am compiling a database of affiliate programs I've joined. Many of those programs have not only their own in-house affiliate program, they also are listed with several affiliate networks. My data...
Is there a simpler way to make multiple queries from one database field than the following:
$query = "SELECT * FROM badips WHERE ip LIKE '1.%'";
$result=mysql_query($query)or die(mysql_error()); ...