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

  • Users: bentleykf
  • Order by date
  1. bentleykf

    Newbie: Thumbnail Creation

    d'you mean GD? I've been using that with a php class file to make thumbnails of the uploaded images and it doesn't do a good job. I'll read up on GD anyway to see whats wrong.
  2. bentleykf

    Newbie: Thumbnail Creation

    I just want to make thumbnails, good looking thumbnails from jpeg or gif files that are uploaded over a form. Why can't i find a good class file to do this for me? So i can just call the class to make the thumbnails and save it with maybe an extention in front of the name like "pre_"? Does...
  3. bentleykf

    preg_replace problem

    no, that didn't work, eregi_replace does not replace the script at all.
  4. bentleykf

    preg_replace problem

    ok,this is the original code <img src="http://www.ahsonline.com.au/bentleykf/phpnews/images/10.JPG" alt="" style="border:none;" /> and this is the code i want <a href="http://www.ahsonline.com.au/bentleykf/phpnews/images/10.JPG"><img...
  5. bentleykf

    preg_replace problem

    thanks, but my main problem is getting the two different URL's from the same URL, i need to add "mini/pre_" into the URL.
  6. bentleykf

    preg_replace problem

    i have the following preg_replace script, which is a part of a bbcode replace script; // Search for this... $replacewhat = array( '/\(.+?)\[\/img\]/i', '/\+) height=([0-9]+)\s*\](.+?)\[\/img\]/i', '/\+)\s*\](.+?)\[\/img\]/i', '/\+) width=([0-9]+)\s*\](.+?)\[\/img\]/i'...
  7. bentleykf

    Passing Variables through frames

    mhhhh, localconnection is nice to me, i think i'll use that
  8. bentleykf

    Passing Variables through frames

    frames as in frameset....i suppose there's some unstable javascript way of doing it?
  9. bentleykf

    Stupid Question - Displaying PHP Variable Text in Flash

    You would create a Dynamic Text field, with a variable name (the text box in the properties window right below the pull down menu to make a text field a Dynamic Text field) the same as the variable you're loading into the SWF with FlashVars....simple :&quot;P
  10. bentleykf

    Passing Variables through frames

    Is it possible to pass a variable to an SWF file after it has loaded?
  11. bentleykf

    Creating Graphics through ActionScript (Newbie)

    I have FlashVars putting a variable with the text &quot;hello world&quot; into my flash movie at the moment, i know how to use a simple textfield to have this displayed, what i want to do is slightly different. first of all, i want ActionScript to create a static text box then i want AS to...
  12. bentleykf

    Using a variable as the key to an array

    arg! sorry another stupid mistake!
  13. bentleykf

    Using a variable as the key to an array

    i want to do the following but php is giving me a hard time doing this echo $pictures[$namearray[1]][1]; the variable $namearray[1] equals fosters1, which is the key. If i replace this with the following echo $pictures[fosters1][1]; it works fine, so whats up????
  14. bentleykf

    Creating variables from strings

    *slaps head* of course!!! sorry parse_str() will do it for me
  15. bentleykf

    Creating variables from strings

    What i want to do is create a variable named after a string loaded in another variable. I know how to do this in Javascript, but i have no idea of how to do it in PHP.
  16. bentleykf

    Rollover HTML links in flash

    mind if i have a look at what you guys r doin, could you send me some .fla files??????
  17. bentleykf

    Rollover HTML links in flash

    ok, thanks bill i think i know how to do it.....maybe i just need to know how to access substrings within dynamic text fields??? and perform actionscript functions when dynamic text has the mouse over it??? sorry, i'm a newbie to actionscript :(
  18. bentleykf

    Rollover HTML links in flash

    i have a dynamic text field which has HTML href's in them. Is it possible for flash to change the style of these text links onMouseOver and onClick like the links on this page???? -bentley k. frog
  19. bentleykf

    undefined arrays

    lol, dont worry, i've solved my own problem again duh... if (tempImageArray[messageLoop]) {...}
  20. bentleykf

    undefined arrays

    is there any other way of testing if an array element has no value other than using this kind of if-then statement if (tempImageArray[i] != undefined) {....} i'm asking because the undefined method of testing this does not work in internet explorer on a mac.

Part and Inventory Search

Back
Top