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!

Recent content by TheAtomic

  1. TheAtomic

    Excel and Notes Email question

    Ive got a workbook that the users enter data into before clicking a macro button that copies the workbook and sends it via email. Sending it in the background works fine, but i wondered if there was a way to show the email (kind of like preview it) before it is sent? Thanks.
  2. TheAtomic

    having a little problem with require()

    How odd... {require("./pics/".$name."_index.php");} Works fine :)
  3. TheAtomic

    having a little problem with require()

    narrowed the problem right down now. {require("pics/".$name."_index.php");} If i change it to: {require("".$name."_index.php");} and create hols_index.php in the same folder, it gets the file correctly, the problem is getting it to include it from a sub directory...
  4. TheAtomic

    having a little problem with require()

    and without the ; in the first URL.
  5. TheAtomic

    having a little problem with require()

    Yep most definatly exists. it being called from: www.example.com/test/index.php?gallery=true&name=hols www.example.com/test/pics/hols_index.php
  6. TheAtomic

    having a little problem with require()

    <?php if($page == ""){$page = "main";} ; if($name == ""){$name = "blank";} ; if($gallery == "true"){require("pics/".$name."_index.php");} else {require("$page.php");} ?> If i set gallery to 'true' and name to 'hols' (which the page its linking to exists) it just shows a blank page...
  7. TheAtomic

    Help with Arrays!

    Cheers :) Cant believe I missed the imgs Array! Doh!
  8. TheAtomic

    Help with Arrays!

    Basically I have two 'sets' of rollover images on a a page. The first example is on everypage, but the second changes depending on what page you are on. When I had just the one set the rollover worked fine, but now I introduced the second set, the rollovers are just referring to the second...
  9. TheAtomic

    help: replacing text in multiple text files in a single directory.

    I'll go from the start give you a full understanding. Basically I have a bunch of files (peoples names eg smithj, jonesp, carterg etc.) and I needed it to create a folder with the same name and move the file to it. eg. smithj.htm -> smithj/smithj.htm Im using this to do that: Const...

Part and Inventory Search

Back
Top