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!

Recent content by Nematoth

  1. Nematoth

    QTVR Autopan - onClick stop the autopanning

    Sorry, perhaps I wasn't clear with ym explanation. I want it to stop when you click on the quicktime movie only.. Should be like this: When you load the page, the quicktime movie autopans.. Then when u click on it to manually manipulate the movie it stops the autopanning movement. Nematoth...
  2. Nematoth

    QTVR Autopan - onClick stop the autopanning

    if I do that.. the autopanning stops... Nematoth www.etv.com.my
  3. Nematoth

    QTVR Autopan - onClick stop the autopanning

    Hi there, I have a problem with some javascript I am using to manipulate a quicktime movie. I found one script which makes the QTVR rotate automatically.. but now what I want to do is stop the autopanning when you click on the embedded object (QTVR). I thought it would be simple but cannot...
  4. Nematoth

    Query - Top 20 results in ascending alphabetical order

    Great! Thats the way! Thanks John. This is what I did: CREATE TABLE new_tbl SELECT title, hits FROM category ORDER BY hits DESC LIMIT 20 SELECT title,hits FROM new_tbl ORDER BY title ASC DROP TABLE new_tbl Nematoth www.etv.com.my
  5. Nematoth

    Query - Top 20 results in ascending alphabetical order

    I am running version MySQL 3.23.58 Could this be the problem? I saw another post somewhere stating that nested select only works on version 4.1 and above.. Is there a workaround? Nematoth www.etv.com.my
  6. Nematoth

    Query - Top 20 results in ascending alphabetical order

    Thats giving me an error mate... what does the "DT" do? Nematoth www.etv.com.my
  7. Nematoth

    making a query not case sensitive

    I thought sql queries weren't case sensitive by default... Have you tested already and it doesn't work the way you expect it to? Nematoth www.etv.com.my
  8. Nematoth

    Query - Top 20 results in ascending alphabetical order

    I have a table which is a list of categories in an online directory.. each time the category is visited in increases the hits column by one.. I want to get the top 20 results (ie. the top twenty most popular categories) and then sort them into a list alphabetically. I tihnk I have to use a...
  9. Nematoth

    XML Parse into array - how to access values?

    I was getting confused with all the multidimensional arrays so what I did was this: [code] $newsArray = $data['NewsML']['NewsItem']['NewsComponent']['NewsComponent']; foreach($newsArray as $value) { foreach($value as $value2) { if($value2['HeadLine']!="") {...
  10. Nematoth

    XML Parse into array - how to access values?

    Thanks.. wasn't quite right.. but it assisted in me solving the problem.. :-) Nematoth www.etv.com.my
  11. Nematoth

    XML Parse into array - how to access values?

    Hi there, I am new to parsing XML with PHP and have found a class that has parsed my XML from AFP very nicely into a multidimensional array: Array ( [NewsML] => Array ( [Catalog attr] => Array ( [Href] =>...
  12. Nematoth

    Best Format for receiving newsfeed

    Hi, We are about to setup a newsfeed from AFP and they are asking which format we require them to send to us: Plain Text HTML NEWSML XML WML I am looking for some advice here on which one would be most suitable for us. What are the differences between the formats? Are they not all essentially...
  13. Nematoth

    Firefox Display Problem (fine in IE)

    Thanks Vragabond. :-) Nematoth www.etv.com.my
  14. Nematoth

    Firefox Display Problem (fine in IE)

    Please can anyone figure out why this is displaying strangely in Firefox.. I can't for the life of me figure out why its happening... http://sentinelglasgow.co.uk/index.php?nav=12&newsID=49 Any help would be greatly appreciated. Nematoth www.etv.com.my
  15. Nematoth

    Firefox Javascript Form population Problem

    ok guys.. thanks for the hints.. it was actually someone elses code that I was assigned to fix and it turns out in the HTML, the form tag didn't have an id attribute and the actual form wasn't even closed!! Thats all it was.. Nematoth www.etv.com.my

Part and Inventory Search

Back
Top