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 Mike Lewis 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: idtstudios2
  • Order by date
  1. idtstudios2

    upload image to php file

    I have been trying for over an hour but I have had no luck. I need to be able post and image to a php script and have the php script save the image to the server. I'm a php programmer but I can't seem to figure out how to post the data using vb. I've tried xmlhttp but can't really get it to...
  2. idtstudios2

    regular expression help. I think?

    Not only does your method work, it is also about 50% faster. Thank you very much. For some odd reason though ltrim was chopping of the "h" in http as well as the "href="". The links came out in the following format: ttp:google.com I have no clue why ltrim is doing this but substituting: $a...
  3. idtstudios2

    regular expression help. I think?

    The following code is supposed to search a page ($html) for tags. It starts out by gathering all links (<a></a>) and then checks to see if rel="tag". It then returns all tags in the following format: hi,wall,brick Now, the script "technically" works except for the fact that it is processing...
  4. idtstudios2

    remove characters?

    Thank you both for you help :)
  5. idtstudios2

    remove characters?

    I have a bunch of links that are formated like so: http://soandso.com/tag/monkey/ http://whatever.com/tags/monkey/ Now obviously "monkey" is just an example tag. In reality the tags would nearly always be different. What I need is to be able to pass the link to a function as a string and have...
  6. idtstudios2

    get &quot;link&quot; tags instead of meta tags?

    It took hours of searching but I finally found some code that I could learn from. You can get it here: http://keithdevens.com/weblog/archive/2002/Jun/03/RSSAuto-DiscoveryPHP someone REALLY needs to take this code, turn it into a function to get any Link tag and post it as an FAQ.
  7. idtstudios2

    get &quot;link&quot; tags instead of meta tags?

    I'm trying to write a script that will visit any given webpage and look for a link tag with the type 'type="application/rss+xml"' and then output the link. Now, it seems that meta tags are no problem to get because of "get_meta_tags" but I have had no luck on finding anything for link data yet...
  8. idtstudios2

    rss crawler/finder?

    I'm trying to write script that will visit a certain page and try to determine if a rss feed is present, if so return a link to it. You would think that this would be fairly easy but I can't really get anything to work except meta data. any ideas or tutorials? Thanks, Andrew
  9. idtstudios2

    compare/anylize keywords/tags?

    I have MySQL table that has a field called "tags" that contains tags/keywords in the following format: "boston, blog, political". Now this table has about 30,000 to 40,000 rows on any given day. I need to be able to do a search for the top 10 rows that match a given set of tags/keywords. In...
  10. idtstudios2

    add space at the top of every page

    Thanks guys, document.getElementsByTagName('body')[0].style.marginTop = '30px'; seemed to work for both FF and IE. Thanks again.
  11. idtstudios2

    add space at the top of every page

    didn't work. I'm off to bed but if anyone knows / comes up with a solution it would be very appreciated. Thanks for trying tsdragon.
  12. idtstudios2

    add space at the top of every page

    I need to be able to add a 30px space/margin at the top of everypage that includes a javascript snippet and I need it to work with atleast firefox, opera, and IE. Since this would have to "overide" any css the page has i'm at a complete lost on how to pull this off. Any suggestions? thanks
  13. idtstudios2

    document.write to DOM

    nevermind, I kept playing and figured it out. Thanks and sorry for the post.
  14. idtstudios2

    document.write to DOM

    I have been trying to convert the following document.write to DOM but have not been able to get it right. document.write('<div id="topbanner" style="position: absolute; top: 0; left: 0; background: #14568a; width: 100%; height: 30px; font-size: 12px; "><p>test</p></div>'); Could someone please...
  15. idtstudios2

    pass variables through url?

    Thank you very much I chose the DOM method and everything works great now. Thanks :)
  16. idtstudios2

    pass variables through url?

    actually the php file just outputs javascript after running the passed variables througha database check. everything works fine except the variables.
  17. idtstudios2

    pass variables through url?

    :( doesn't help much. Thanks for trying though. I need the variables to be passed in the source URL. Thanks again :)
  18. idtstudios2

    pass variables through url?

    I'm trying to pass javascript variables through an URL and I can't seem to get it correct. I think you can tell what i'm trying to do. I just don't know how to do it <script type="text/javascript"><!-- tag_type = "personal"; tag_content = "political"; //--></script> <script...
  19. idtstudios2

    delete data after X number of days?

    Yes, it's mysql. Thanks for all the replies guys.
  20. idtstudios2

    delete data after X number of days?

    I have a table that logs certain data for a website and it has a field that holds the date the row was added in the format 11/25/2005. I have been trying for an hour and I cannot seem to write an sql query that will delete the rows older than 14 days. Any advice? Thanks as always, Andrew

Part and Inventory Search

Back
Top