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 SkipVought 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. 196509

    CFHTTP within a looped CFHTTP?

    Hi all, I have a looped CFHTTP that outputs content of URLs one after another as follows; <cfloop query=&quot;getPages&quot;> <CFHTTP method=&quot;Get&quot; url=&quot;http://test.com/test.cfm?user=#getPages.user#&cat=#getPages.cat_id#&page=#getPages.page_id#&quot; resolveurl=&quot;yes&quot;>...
  2. 196509

    parsing out certain html tags from CFHTTP

    My goal here for now is to get rid of all <div...> and </div> tags. These div tags use different CSS tags. For ex: there is <div id=&quot;A&quot; class=&quot;breadcrumb&quot;></div>, <div id=&quot;firsttextbox&quot;></div>, <div id=&quot;othertextbox&quot;></div> so on. Any idea? Thanks.
  3. 196509

    parsing out certain html tags from CFHTTP

    Hi all, I am trying to parse out numerous <div> tags on pages that are output by <cfhttp> in a loop. Code I have so far(just CFHTTP part) is; <cfloop query=&quot;listPages&quot;> <cfhttp method=&quot;Get&quot...
  4. 196509

    need to print multiple pages generated dynamically all at once

    Hi again, I decided to try <cfhttp>. I have a several links that I want to list their content one after another but with a page break between pages, so I coded like this(for now each links are hard coded to make things simpler): <cfhttp method=&quot;Get&quot...
  5. 196509

    need to print multiple pages generated dynamically all at once

    Hi~, Thanks so much for your input, Janoh, and for the example code, ded!!! The example code is really helpful. Thanks again. I've got the theory or data flow of what should be happening(in behind the scene) for me to print them all at once. The difficult part is that, being in a very junior...
  6. 196509

    need to print multiple pages generated dynamically all at once

    Hi iza, Thanks for your message, but could you be more specific for me? How do you mean to include user=1&pagetype=1, user=1&pagetype=2, user=1&pagetype=3, user=1&pagetype=4 in a dynamically generated page? These links are generated dynamically. I will have to carry these links over to the...
  7. 196509

    need to print multiple pages generated dynamically all at once

    Hi all, I have a user home page generated per user profile(user=1) that was chosed from previous page. This user home page lists links to related pages of this user(so it lists user=1&pagetype=1, user=1&pagetype=2, user=1&pagetype=3, user=1&pagetype=4 pages). I need to add &quot;print&quot...

Part and Inventory Search

Back
Top