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 TouchToneTommy 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. snowboardr

    Saving a £ sign to access db via AJAX post

    Make sure your database, table, column is all utf8, you may need to encode the ajax... if you are using jquery it should be done for you... but I would say this has something to do with utf8 ... You also may consider converting it to &pound or £ Jason Army : Combat Engineer : 21B
  2. snowboardr

    Looping through an array of data - how would you skin this cat

    You should really look into a PHP framework... it will make your life much easier.. it makes database management stuff super easy... look on youtube for examples... I would recommend CodeIgniter, DooPHP or CakePHP... CakePHP is the slowest out of those two... CodeIgniter has probably the best...
  3. snowboardr

    when page re-rendered

    By "re-rendered" do you mean the page has finished loading? I would say you could probably do this with jquery... // ... jquery library... $(function(){ // Anything here runs after the page is done loading... }); Jason Army : Combat Engineer : 21B
  4. snowboardr

    Newbie Here

    Install wampserver and then drag your file into c:\wamp\www Then goto http://localhost/Hellov2.php and Done. http://www.wampserver.com/en/ If you ever want to make sure php is working just save a php file with this line of code: <?php phpinfo(); ?> If php is not working usually it will...
  5. snowboardr

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

    Thanks for your help jpadie I appreciate the time to make your sample code.. Your example made me solve the problem... Opera doesn't like returns in its json! so since it was getting it from the database it pushes the code down the page thus not printing it out on the first line! Try putting...
  6. snowboardr

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

    oh and sorry forgot to answer your question... i have tried all different mime types including text/html , plain etc etc with and without... ok i just tried something and have it working... but its odd... it works in this situation: non database drive output: json.test.php <?php...
  7. snowboardr

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

    jpadie, it doesn't even enter the $.getJSON(url,params,function(rData){ function however it is going into my loadBread function i show an alert, but its not returning anything, in dragon fly error wise... working perfectly in chrome, ff, ie 8, safari, but opera is killing it it is show /...
  8. snowboardr

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

    Sorry Billy, im in process of getting a new host setup so i dont have access to a webserver for the next 12 hours or so... I think ill just drop ajax support for <= E 7 and Opera... Your tips help a lot jpadie, I add an error function to see what was going on... i also changed my code around...
  9. 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...
  10. 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(); } ); }); })...
  11. 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...
  12. 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
  13. snowboardr

    Question about 3 monitor display from laptop

    So something like a vga splitter wouldnt working if i get a cable with an adapter to hdmi http://www.amazon.com/Cables-Go-Splitter-Extender-4-Port/dp/B00008BO8N/ref=pd_bbs_sr_11?ie=UTF8&s=musical-instruments&qid=1231705711&sr=8-11 Jason Army : Combat Engineer : 21B
  14. 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...
  15. 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...
  16. 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...
  17. 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...
  18. snowboardr

    captcha gone wrong (gd)

    Hi jpadie, thanks for the reply... I would like to use an image capture this time around... i just can't find the issue with my code that would make the letters not space... maybe i have a value wrong that im a not seeing... What is your other suggestion? Thanks jason Jason Army : Combat...
  19. 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...
  20. 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" | |...

Part and Inventory Search

Back
Top