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: *

  1. darryncooke

    Wordpress Navigation

    So I am trying to create a pretty unique navigation structure in my site. Each page has left and right arrows fixed positioned on the left and side respectively. they are either for 1. Pagination between the page or controls for in page sliders. the bump I have hit is when you are in a single...
  2. darryncooke

    toggle styles

    I have a style with an image and i want to swap styles on click back and forth. its pretty much an image that i want swapped when clicked once and then swapped back when clicked again and back and forth. Darryn Cooke www.darryncooke.com | Marketing and Creative Services
  3. darryncooke

    JQUERY Issue

    I have 2 functions I am trying to run using document.ready $(document).ready(function(){ // Initialize Backgound Stretcher $('BODY').bgStretcher({ images: ['images/2carne-asada-taco-plate.jpg', 'images/carne-asada-torta.jpg'], imageWidth: 1920, imageHeight: 1080, nextSlideDelay: 5000...
  4. darryncooke

    Previous and Next

    Here's a link - http://www.darryncooke.com/dcremix/darryn-cooke-work.php - If you click one of the items you will get to that item details section. Above it you will see a previous and next text for what I want the user to go to the next or previous item. right now the dbase has 10 instances...
  5. darryncooke

    Jquery plugin issues

    So I am implementing the tweetable plugin as well as bg stretch plugin. to call tweetable i use this funcstion $('#tweets').tweetable({}); to call bgstretcher $(document).ready(function(){ // Initialize Backgound Stretcher $('BODY').bgStretcher({ images: ['images/bg1.jpg', 'images/bg2.jpg'...
  6. darryncooke

    Use PHP to connect to MySQL database from a different host

    So i have site A (Wordpress blog as CMS) on one shared host and Site B (wordpress blog) on another shared host. I am trying to connect from A to B MySQL using php but my script wont connect. Script works fine if I run it from B. So I am guessing its a permissions issue with MySQL. How do I...
  7. darryncooke

    php, mysql from_unixtime

    I have a select function in php. $month_recordEventsmonth = "April"; if (isset($_GET['month'])) { $month_recordEventsmonth = $_GET['month']; } mysql_select_db($database_theGREENbar, $theGREENbar); $query_recordEventsmonth = sprintf("SELECT * FROM wp_cgm_cal_entries WHERE...
  8. darryncooke

    repeat region issue

    I have a repeat region that is not displaying before i add the repeat region i have <div class="newsBar"> <h4 class="newsSide"><a href="#" class="purple"><?php echo $row_recordNews['post_title']; ?></a></h4> <h5 class="newsSide"><?php echo...
  9. darryncooke

    image rollover issue

    I am trying to make a liquid display with 3 images making the primary banner. http://www.darryncooke.com/dcnew/ If i set those 3 images as relative with a float left then they work fine pre-rollover. By fine I mean they retain their min-width properties and everthing looks good. However on...
  10. darryncooke

    php conditional region

    so I have a query which selects distinct items from a column. I want to hide a selection of text if said column contains a string. right now I am using if ($row_recordsetname['column_name']=='string' but I only want it to check if "string" exists in said field NOT "string" being the actual...
  11. darryncooke

    select all from one column if no variable is specified

    I have little (to maybe no) experience in sql. I have a sql string that i want to create fora website using php where i have 3 criteria. Not all 3 will be selected. lets say they are A, B, and C. I can create a sql statement that pulls the URL variable using GET if A, B and C are specified...
  12. darryncooke

    Mysql and PHP and/or help

    Hi, So I have some results I am trying to get into a query and I can get the AND statement working fine. The problem I am having is such. I am searching industries and cities. However lets say someone wants to search an industry but no city I get no results. I tried making the default value...
  13. darryncooke

    find and replace

    I have a table of about 150K records that I am trying to clean up. In 1 column there are types of businesses but they are not uniform. For example it could say, accountant, accountants, accounting, acct, acct/banking/tax, etc.. How can I find an replace with say 'Accounting Services'. Lets...
  14. darryncooke

    expandable navigation

    First off I am looking more as to where to start this journey. I am building a local business directory of which I have over 100K records. Each record has a colum 'primary industry', 'secondary industry', 'primary line of business', 'secondary line of business'. So lets say the 'primary...
  15. darryncooke

    yelp api help

    So I have this code but its not pulling anything. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http:// www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />...
  16. darryncooke

    limit characters displayed from dbase field

    This is a script I found online and it works for static text but not for text that I am trying to pull from a dbase. <? $position=8; // Define how many characters you want to display. $message=echo $row_articles_select['title']; $post = substr($message,$position,1); // Find what is the last...
  17. darryncooke

    session redirect

    Ok so here goes. I have a form on a contact page that when submits will go to thank you page. However I do not want anyone to be able to access the thank you page unless the form is submitted. I figured the easiest way was to set a session variable on the contact page. session_start(); $val...
  18. darryncooke

    relative positioning issue

    http://www.darryncooke.com/newsite click on about darryn cooke and you will see that i have text that is relative positioned. -230 px for the top. problem is that it is adding a lot f extra space at the bottom before the footer. i have tried everything but when applying a negative bottom...
  19. darryncooke

    footer overlapping

    http://www.bloobie.com/dcooke Ok so I am almost done with the layout, 3 minor issues, 1 i might be able to live with. 1. if you resize the browser shorter (IE and Firefox)the footer starts to overlap all the content. 2. if you resize the browser narrower then in IE the scroll bar come below...
  20. darryncooke

    CSS height issue

    http://www.bloobie.com/dcooke You will see the bar on the left extends beyond the page. how do i prevent that so that the bar always just extends to the bottom of the page? thank you,

Part and Inventory Search

Back
Top