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: *

  1. Karl Blessing

    Converting Tab delimited to MySQL database

    I'm currently working on my church's website incorporating a couple versions of the bible into the site for an on-site searching and browsing capability. I currently already have King James, and some others from older text that I had (manually yikes!) parsed into the mysql database and actually...
  2. Karl Blessing

    Randomizing the Results.

    (I am using PHP on a *nix box) I would like to make the results returned from this query return in a random order. ie: 1 2 3 4 5 => 2 4 1 3 5 , and different each time the query is run. select f.ID as fid, d.Title as denom, c.denom as did, c.ID as ID, c.name, c.imgw, c.bio, c.imgh, c.city...
  3. Karl Blessing

    FullText Search Not Reliable

    Ok I have a database table, with some records in it, two fields make and model are both indexed as fulltext searchible ( together ). (MySQL 4.*, PHP 4.*, Apache, on a *nix server) Heres a Scenario, say Make is "Chevy", so I do a search for chevy using the following Mysql Statement. select...
  4. Karl Blessing

    Trying to make clean text-based watermark

    I have the following code, what it basically does is take the standard method of writing text into an image, however because text methods ( that I know of ) , will not allow you to make a font color somewhat transparent, I am creating a blank image on the fly, filling the background, setting the...
  5. Karl Blessing

    Getting First Element.

    I have a price dropdown list. As shown in the Partial XML here <galleries> <gallery id="bees"> <image name="crw_0640" convertable="yes"> <longname>Bee on Yellow Flower</longname> <description>A honey bee on top of a yellow flower. Grass out of focus in background.</description>...
  6. Karl Blessing

    A more simple way of doing this?

    if ($tut_rating == 5.0) $gfx = "5_0.gif"; if (($tut_rating >= 4.5) && ($tut_rating <= 4.99)) $gfx = "4_5.gif"; if (($tut_rating >= 4.0) && ($tut_rating <= 4.49)) $gfx = "4_0.gif"; if (($tut_rating >= 3.5) && ($tut_rating <= 3.99)) $gfx = "3_5.gif"; if (($tut_rating >= 3.0) && ($tut_rating <=...
  7. Karl Blessing

    Trying to get Balanced 2 Column Table

    I'm converting a static HTML Table as seen here http://www.nwmi.org/index.php?page=support (expand the western region for exact one) To an XML/XSL solution, But heres the problem while I got a single column no problem as you can see here http://www.karlblessing.com/xml/support.xml <?xml...
  8. Karl Blessing

    Example of Mp3 Streaming

    is it possible for me to get an example of how I can stream an Mp3 into a small little box with a play/stop button. What I am intending to do is have small flash movie, with play/stop , and I want to pass the name of the mp3 to load via the embed tag ( like...
  9. Karl Blessing

    keyboard shortcuts in Mac OS X

    I am using a PS/2 KVM switch to control both my PowerMac G4 733 with OS X , and my AMD Athlon XP PC from one mouse/keyboard. Because it is a PS/2 KVM switch, I have to use a PS/2 to USB adapter. The CTRL/window/Alt are treated as command/option/apple and such. But the keyboard doesnt have a...
  10. Karl Blessing

    imagerotate function not working

    trying to write a function that will rotate an image. I have the GD2 extension loaded, I have PHP 4.3.2 ( I had to upgrade as its said imagerotate() doesnt work on lower than 4.3.0 ) this is the function with some debug echos in it. function rotatePix($sourcefile, $targetfile, $degrees) {...
  11. Karl Blessing

    3D Text in Bryce

    Hello, I'm trying to find a quick way to do 3D text in bryce. What I have been doing some far, was opening up photoshop loading a 400x400 or so project. Typing in the text in the font of my choice on a black background, using bevel effect if i want it to be a smoother shape, using a dark gray as...
  12. Karl Blessing

    Populating treeview with delimited strings

    Hello, I would like some assistance reversing this subroutine I have already written for a custom tree component. Right now users could add sets with pictures/descriptions being child nodes of the set nodes. Whenever the tree is updated it generates a string property which is the delimited...
  13. Karl Blessing

    Resize Images(thumbnails) on the fly

    I was searching planetsourcecode for something to resize images into thumbnails on the fly, unfortunatly the only two PHP solutions offered there, only told the HTML the height and width to put in the <IMG> tag, which was kinda useless as you would still be downloading the whole full size of the...
  14. Karl Blessing

    Apache(Win32) &amp; Frontpage Extension = Exist?

    I cannot seem to install Frontpage 2002 Extensions, I am trying to make the move from IIS to apache win32 , so far so good, with php and such, but I cannot install FP2002 extension as it complains that I do not have a IIS webserver. any way I can get around this, perhaps even going to an...
  15. Karl Blessing

    Accidently deleted _vti* now cant reinstall FP

    Been having one heck of a problem with the server, everything else runs fine, but after acidently deleting the _vti* folders in the production /html folder thinking I was in the backup html folder as i was getting ready to compress a backup. So if I did that, even if we droped the site and...
  16. Karl Blessing

    Retreaving certain number of days back

    I have made the switch from an ASP/Access site, to a PHP/MySQL site, the queries I've used thus far seem to work ok , all except for one. I have a query that pulls back records no older than 2 days from the latest record. The kind of syntax I have been using is : Postings where PostDate >=...
  17. Karl Blessing

    Migration from MS solution to *nix solution

    Hello, for some time now I've been very microsoft oriented in my projects, a site that I am working on is moving to a redhat based hosting soon ( I had been preparing a ASP/Access version of the site, since we had original plans to get a Win2k hosting , but expenses knocked us down to a *nix...
  18. Karl Blessing

    Trying to update OS X 10.1.1 without internet

    I have an apple G4 733Mhtz , with OS X 10.1 and OS 9.2.1 installed, I have downloaded the update for 10.1.1 and a securety update that apple.com tells you to download prior. and then copied them over to the apple and proceeded to install the security update (the apple, nor the PC right next to...
  19. Karl Blessing

    Trying to update to OS X 10.1.1 w/o internet

    I have an apple G4 733Mhtz , with OS X 10.1 and OS 9.2.1 installed, I have downloaded the update for 10.1.1 and a securety update that apple.com tells you to download prior. and then copied them over to the apple and proceeded to install the security update (the apple, nor the PC right next to...
  20. Karl Blessing

    CDrw Issue , need to backup before reinstall

    I have had a 16x10x40 HP CDrw for a while now, has worked flawlessly for quite some time, now windows 2000 is corupting E:\WinNT\System32\Config\SYSTEM file from time to time upon reboot, and I have to use the recovery console to fix it, seems after a while Win2k is getting the habit of being...

Part and Inventory Search

Back
Top