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 Chriss Miller 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
  • Content: Threads
  • 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?

    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...
  3. 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...
  4. 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...
  5. 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
  6. 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...
  7. 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
  8. 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...
  9. 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...
  10. 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
  11. idtstudios2

    inlcude across web?

    I have many websites that exist on many webservers in many countries. All of the sites pull template files from "template.mainsite.com". This allows us to have around ninety sites pull off of one set of template files. You can imagine how usefull and time saving this is. Now, the problem is...
  12. idtstudios2

    htacess question

    My host does not allow multiple domain hosting. However, they do allow for unlimitted domain parking. I have been succesfully using the following htaccess in my root folder to get around the lack of multiple domains for several months. Then about a week ago I needed to use htacces for one of my...
  13. idtstudios2

    rich text?

    After trying many drop-in comment systems, i finally just buckled down and wrote my own. Everything is working wonderful except for the fact that I would like users to use a bit of code in the text (bold, italics, etc). Does anyone have any recommendations on how to do this? Are there any drop...
  14. idtstudios2

    share session

    I have a custom made login system and need to be able to share sessions accross multiple sites on the same server. Basicaly: login to http://somesite.com and then go to http://mbox.somesite.com and not have to log in again. I have tried changing the session path but I just can't figure it...
  15. idtstudios2

    mod rewrite help

    I have been trying to get this right for about three hours now and I just can't figure it out. I'm trying to turn: http://site.com/day.php?day=18122005 into: http://site.com/day/18122005 and this is my latest rendition of my htaccess file: RewriteEngine On RewriteBase / RewriteRule...
  16. idtstudios2

    css IE problem

    Could someone please take a look at the page below in both IE and Firefox and show me how to fix the div that is screwed up in IE. http://boston-hub.com/ Thanks, Andrew
  17. idtstudios2

    command line control?

    I have an application that has literaly hundreds of objects that would be too messy to control through command buttons and such. What i'm looking for is a way to implement a DOS like command line that I can use to control everything. Any ideas or user controls out there? Thanks
  18. idtstudios2

    download picture but do not save file?

    I need to be able to pull an image off of a server and load it into a picture box fairly quickly. I have figured out how to download the picture then load it. Now, my problem is that a lot of time is being wasted by saving the file. Is there anyway to pull an image off the internet and load it...

Part and Inventory Search

Back
Top