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 strongm 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. CliffLandin

    Problems with LIKE clause in query

    I am encountering a strange issue. I am querying a mysql database for keyword results using: SELECT * FROM table WHERE title LIKE '%keyword%' and it works fine... but only for certain words. For example, I have 2 properties, Viking Lodge #213 and Franz Klammer Lodge. If I search for Viking...
  2. CliffLandin

    Alpha Transparent background with Image in front

    I gotcha. Using the 75% opaque background .png worked fine, but not in IE6. I think I can live with that. Applying any opacity for IE6 makes it completely clear, but I can probably get away with it being completely white. We shall see. Thanks for the help. When in doubt, go flat out...
  3. CliffLandin

    Alpha Transparent background with Image in front

    The background of the div is transparent, not the background to the page. The background of the page that I am trying to work with is an image. The div has a white background so that the text within the div is legible, but you should be able to see the background image through the background of...
  4. CliffLandin

    Alpha Transparent background with Image in front

    I am trying to create a div that has a alpha transparent background, but contains images. The problem is that the images inherit the transparency as well. I have tried to give them different z-indexes, wrap them in there own div with backgrounds and setting the divs transparency to none and a...
  5. CliffLandin

    Convert an XML doc to a string

    That did it. Sending the file_get_contents directly to the session worked. I can then use simplexml to parse it. Thanks for the help When in doubt, go flat out! http://www.soprisinteractive.com
  6. CliffLandin

    Convert an XML doc to a string

    The Background: I am developing a site that queries a booking agent that returns an XML doc full of booking information. I use file_get_contents to return the data as a string which is then parsed using simplexml_load_string. I had been using simplexml_load_file and passing it the url, but I...
  7. CliffLandin

    IE7 and alpha transparent PNGs

    I had 2 issues that after pulling out most of my hair I have resolved. 1st - if you are applying transparency to make a background color transparent, for example; filter:alpha(opacity=80); -moz-opacity:.8; opacity:.8; IE will then ignore the transparency of a .png. 2nd - When using the...
  8. CliffLandin

    IE7 and alpha transparent PNGs

    http://telluride.btmserver.com/localweather on the right where it says winter should be a nice clean png with a pretty dropshadow. If you want to see how it should look check it in firefox. When in doubt, go flat out! http://www.soprisinteractive.com
  9. CliffLandin

    IE7 and alpha transparent PNGs

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> png24 and it doesn't work. I'll provide you with an example tomorrow. I pulled it off of the site, but I will put it back. When in doubt, go flat out...
  10. CliffLandin

    IE7 and alpha transparent PNGs

    What do I have to do to make .pngs with alpha transparency work in IE7. I was under the impression that IE7 was supposed to handle them correctly, but it appears that what was the bane of my work day continues to be the bane of my work day. Any help would be appreciated. Thanks, When in...
  11. CliffLandin

    Copying images off of a site

    Okay, I figured it out. For any one that is curious; <?php $urlPath = "http://pathtoimages/"; $csvFile = "nameofcsv.csv"; $cnt = 0; $openCSV = fopen($csvFile, "r"); while (($data = fgetcsv($openCSV, 1000, ",")) != false){ if($cnt < 1){ $fileName = $data[ 7 ]; $imagePath =...
  12. CliffLandin

    Copying images off of a site

    I need to copy around 7,000 images from a site to my computer. I have a csv file with the image names and the path to the images. I have tried using this... <?php $urlPath = "http://pathtoimages/"; $csvFile = "nameof.csv"; $cnt = 0; $openCSV = fopen($csvFile, "r"); while (($data =...
  13. CliffLandin

    Apache / php Debian Etch

    I have just installed Debian Etch on my laptop and when I try to access any php files on my localhost I get a message saying "Direct Access to this location is not allowed." I can access .html files no problem. I have been using Debian Sarge and Ubuntu for a couple of years and have never had...
  14. CliffLandin

    Postgres Blogs

    I am using an SMC that uses Postgresql and I am trying to find an easy to use blog that uses Postgres. Any suggestions? The client asked me if they could use WordPress, but that uses mySQL. So I am looking for something WordPress like, but using Postgres. When in doubt, go flat out...
  15. CliffLandin

    Creating new fields in Postgres

    Sweet, thank you. That got it. :) When in doubt, go flat out! http://www.soprisinteractive.com
  16. CliffLandin

    crystal reports and postgres.exe error

    It is pg_close($whatever) $whatever being whatever you use as $whatever = pg_connect(host=...) When in doubt, go flat out! http://www.soprisinteractive.com
  17. CliffLandin

    Creating new fields in Postgres

    I need to add a field to a Postgres db. I have poured over the postgres manual and can't find out how to do it. Any help would be appreciated. Thanks When in doubt, go flat out! http://www.soprisinteractive.com
  18. CliffLandin

    Finding Height and Width Attributes

    Is there a way to find out the height and width attributes of an image? I have a gallery page that displays images from a database. I want the user to be able to enter pictures of any size (within reason) and display them at maximum size if bigger or the correct size if smaller than the max...
  19. CliffLandin

    PNG's, IE, transparency and JS

    Ah, ok, I forgot all about that. Thanks for all your help and patience. When in doubt, go flat out! http://www.soprisinteractive.com
  20. CliffLandin

    PNG's, IE, transparency and JS

    Okay, I'm pretty sure that I have it exactly as you showed it. Once again, I must be doing something wrong, because with the code as you have it, it show the nav panel with the background, then it disappears. I'm sure it has something to do with the order in which these things are being...

Part and Inventory Search

Back
Top