www.webdeveloper.com

Search:

Type: Posts; User: jwgrafflin

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. Thanks xelawho. Couldn't see the forest for the...

    Thanks xelawho. Couldn't see the forest for the trees. No more validation error.
  2. [RESOLVED] Validation error - unterminated string literal

    This line of code is returning a W3C validation error:

    <a href="http://www.jwgmg.com/cf1/contactform.php" rel="nofollow" target="_blank"...
  3. Replies
    11
    Views
    947

    Starting to make sense now. Thanks!

    Starting to make sense now. Thanks!
  4. Replies
    11
    Views
    947

    So, the tag was created to make things look...

    So, the tag was created to make things look better to developers, instead of using <div id="article">?
  5. Replies
    11
    Views
    947

    Let me rephrase the question. What purpose does...

    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?...
  6. Replies
    11
    Views
    947

    HTML5 element

    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?
  7. Replies
    0
    Views
    742

    Parked domains and SEO

    I have one hosting account with several, as some call them, parked domains. For example:

    root-domain

    sub-domain

    sub-domain

    sub-domain
  8. Replies
    23
    Views
    2,071

    Here's a screenshot of my latest post, if that...

    Here's a screenshot of my latest post, if that will help.
    http://www.jwgmg.com/NaijaFinder.png
  9. [RESOLVED] mySql and expandable or dynamic menus

    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...
  10. Thanks NogDog. Here's the final solution: ...

    Thanks NogDog. Here's the final solution:

    UPDATE articles SET url = replace(url, 'http://www.old-site.com/articles', 'http://www.newsite.com/library')

    For reference, see...
  11. [RESOLVED] Moved articles, need to change urls in database

    I've tried several querys in an attempt to change the urls of my articles stored in my database. So far, none have worked. Here's an example:

    UPDATE `articles`
    SET 'url' LIKE...
  12. Replies
    0
    Views
    87

    Using special characters with UPDATE

    Some time ago I resolved the problem with special characters and INSERT by modifying my code as follows:

    $progname=mysql_real_escape_string($_POST['progname']);

    This allowed me to use quotes,...
  13. Replies
    2
    Views
    559

    The two tables are related by progname. One...

    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...
  14. Replies
    2
    Views
    559

    One insert.php for two tables

    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....
  15. Your absolutely right. The TEID field contains...

    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...
  16. Yes, it returns all four rows. The rows would...

    Yes, it returns all four rows.

    The rows would be filtered by what is in the TEID field. If it contains '-' it is not to be used. If it contains anything else, it should be used.
  17. TEID is VARCHAR and contains such things as email...

    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...
  18. Makes no difference using LIKE '-' or LIKE '%-%'....

    Makes no difference using LIKE '-' or LIKE '%-%'. Both return "0 ROWS INSERTED"
  19. #1064 - You have an error in your SQL syntax;...

    #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...
  20. [RESOLVED] Copy from table to table code not working

    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...
  21. Here's the scenario. I have numerous affiliate...

    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...
  22. I don't understand how to implement what you are...

    I don't understand how to implement what you are talking about.

    Here is the entire page code I have so far, to better explain what I am attempting to accomplish.



    <!DOCTYPE html PUBLIC...
  23. Warning: mysql_fetch_assoc(): supplied argument...

    Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource
  24. [RESOLVED] Displaying results from multiple field query

    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...
  25. Replies
    1
    Views
    1,534

    Multiple queries for one DB field

    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()); ...
Results 1 to 25 of 101
Page 1 of 5 1 2 3 4
HTML5 Development Center



Recent Articles