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

  • Users: snowboardr
  • Content: Threads
  • Order by date
  1. snowboardr

    jquery issue in IE and Opera... odd issue...

    Below is a simple jquery function, calling a json php file I have run through every possible thing i can think of but its not running on IE (compatibility mode ) and Opera 10... Google Chrome, IE 8, Firefox, Safari all run this script without an issue. I have checked my json file and it is...
  2. snowboardr

    livequery and .toggle

    I am trying to figure out the toggle using livequery... for some reason this is not working: $("#fu"+drop_id).livequery(function(){ $(this).toggle( function () { $(this).hide(); }, function () { $(this).show(); } ); }); })...
  3. snowboardr

    jquery issue when show/hiding multiple divs

    I have 5 links when hovered a div slides up with a thumbnail and a title of the link, however if you hover over another link before the first div hides itself it causes the div to flash or to more or less que up the animation multiple times... if that makes since... I dont have the code on this...
  4. snowboardr

    triplehead2go digital edition

    Has anyone used the triplehead2go digital edition with and adapter from DVI to HDMI into their laptop? Will this work if i want to use split screen / stretch the screen across all 3 monitors? Jason Army : Combat Engineer : 21B
  5. snowboardr

    Question about 3 monitor display from laptop

    I just ordered 3 dell monitors both of which have 2 ports built in: 1 x VGA - 15 pin HD D-Sub (HD-15) ¦ 1 x DVI-D - 24 pin digital DVI My laptop has a female hdmi port. I would like to have a multi monitor setup but i am fed up with looking for a cost effective solution on this problem...
  6. snowboardr

    simple XML problem

    I am unable to get the following script to display anything and i have modified it multiple times to try and get it to work before posting this: index.php <?php if (file_exists('myfile.xml')) { $xml = simplexml_load_file('myfile.xml'); //print_r($xml); echo $xml->item->description...
  7. snowboardr

    ie not displaying link right

    Can someone tell me why IE doesn't show the top and bottom lines on this link? Any ideas? a.dl2:link{ font-weight:normal; text-decoration:none; color:#000000; font-size:90%; padding-left:6px; padding-right:6px; padding-top:3px; padding-bottom:3px; letter-spacing:1px...
  8. snowboardr

    Issue with centering a floating div...

    I have a div inside a main div : #innerContent { position:relative; top:2em; width:100%; left:0; padding:1px; margin-right:18%; } and i am trying to get these divs to center inside the above div: #prod {float:left; position:relative; text-align:center; margin-top:9px; top:4em...
  9. snowboardr

    captcha gone wrong (gd)

    Trying to put together a captcha been looking for this bug for a minute now... im just not seeing it... my text is overlapping in the image... each letter is on top of each other... where is the problem?? <?php $pass_length = 4; //captcha word length $width = 200; //captch image width...
  10. snowboardr

    Multidimensional Arrays help

    I have been trying to learn more about Multidimensional Arrays. How do i get lettercount in this array only based off the letter not the index number... here is my array output: $alpha_count => Array (22) ( | ['0'] => Array (2) | ( | | ['letter'] = String(1) "a" | |...
  11. snowboardr

    Efficient way to count all users by first letter of last name

    What would be the most efficient way to count how many records there are for each last name of a user from A-Z ie: A: 30 users B: 10 users C: 22 users select substring(clast, 1,1), count (clast) from customers group by substring(clast,1,1); i tried this but i get an error saying: #1305 -...
  12. snowboardr

    most efficient way to count

    What would be the most efficient way to count how many records there are for each last name of a user from A-Z ie: A: 30 users B: 10 users C: 22 users etc Jason Army : Combat Engineer : 21B
  13. snowboardr

    Why is it echoing the variable name

    new to php its echoing the variable name rather than the list i created... $cid = @$_POST["cid"]; $cfirst = @$_POST["cfirst"]; $clast = @$_POST["clast"]; $caddress = @$_POST["caddress"]; $ccity = @$_POST["ccity"]; $cstate = @$_POST["cstate"]...
  14. snowboardr

    Having trouble returning correct record count

    It appears my php code is returning the amount of records in every table in the db and im not sure why... this is thus throwing off the paging count... $currentPage = $_SERVER["PHP_SELF"]; $maxRows_Customers = 10; $pageNum_Customers = 0; if (isset($_GET['pageNum_Customers'])) {...
  15. snowboardr

    Spry widget javascript change tab DW CS3

    I am not sure what i would to do to have onclick javascript change tabs? Any suggestions?
  16. snowboardr

    TGML help

    I have some code that blocks html use but i would like to enable something exactly like the code block below to work on my site can anyone point me in any direction on how i would go about doing that? Regards, Jason Function html(strTextHtml) If strTextHtml <> "" then strTextHtml =...
  17. snowboardr

    update browser center?

    I have this script below that i made many modifications to get it to be cross browser compatible. This script replaces the alert() with a div alert my only problem is right now... is if you scroll down the page the alert is still popping up farther up a couple of inches above the screen, but if...
  18. snowboardr

    show only greater than 0 on a count statement

    I have this SQL : Select DISTINCT th.tid, th.tname, th.tmain, th.tcolor, (SELECT COUNT(star.stid) FROM userstars as star WHERE star.stid=th.tid AND sonuid=1) as starcount FROM thread th WHERE th.tmain=1 I need to show only records that return a starcount of > 0 but when try to add star count...
  19. snowboardr

    Trying to add a select count to working sql statement

    I am trying to add a select count inside this sql statement, but i get this error: any ideas? Microsoft OLE DB Provider for ODBC Drivers error '80040e31' Operand should contain 1 column(s) SELECT post.pid, post.ptid, post.ptid2, post.puid, post.psubject, post.ptype, post.preplycount...
  20. snowboardr

    How do i do a count of how many records are tagged under one tag?

    How do i do a count of how many records are tagged under one tag? SELECT DISTINCT ut.uxtagid, ut.uuserid, ut.uprivate, tt.tid, tt.ttag, tt.trated FROM usertags ut, thetags tt WHERE ut.uuserid=1 AND ut.uxtagid=tt.tid ORDER by tt.ttag "thetags" contains the actual tag name like this: tid...

Part and Inventory Search

Back
Top