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

  • Users: dreammaker888
  • Order by date
  1. dreammaker888

    How do you modify php.ini to install GD Library?

    All of a sudden, the getimagesize() function stopped working in my php code. Maybe my isp did some upgrade or change to their php server. I did some research and there is talk about the need to install GD Library in php.ini to get it working. I don't have any clue how to install GD Libary...
  2. dreammaker888

    Problem with getimagesize() in IE

    The display code works fine when we did away with getimagesize(). Here's the code for display: echo '<td width="16%" align="center"><A href="javascript: popItem(\'' . 'OpenItm.php?$c=' .$iCode . '\')" onmouseover="Tip(\'' . $adDesc . '\')" onmouseout="UnTip()"><img border="1" src="' . $tURL ...
  3. dreammaker888

    Problem with getimagesize() in IE

    I don't know why you said the code was flawed. Help me understand please. I have pined down the part that doesn't work properly was the getimagesize() function. When we replaced it with code to read the data from mySQL, the rest of the code works properly.
  4. dreammaker888

    Problem with getimagesize() in IE

    Yes, it is browser specific. But the part I don't understand was, it has been working for 2 years and all of sudden it doesn't anymore. What changed? So, I wrote the work around this morning. I uploaded the width and height of the pictures in mySQL. Modified the code to pick up the dimension...
  5. dreammaker888

    Problem with getimagesize() in IE

    I use getimagesize() to get the width and height of the image, then resize it so it display properly. The code was working fine for two years in my website. All of a sudden, in IE, the image is only 1x1, so no one can see the picture. However, I was told, the picture displays properly in...
  6. dreammaker888

    Questions about SSL

    I do think this is the right forum to ask my question because it is regarding writing a webpage to take credit card information. I had asked question as I needed to and had gotten good answers which I had put into my application. I do appreciate those who share their knowledge. Thanks. Alex
  7. dreammaker888

    Questions about SSL

    I'd like to add a feature to accept credit card in my website. I think I can write the part of taking user information and the credit card number. I have seen most of them will use SSL encrypted security. Can someone explain the concept and technicality on this subject? Thanks. Alex
  8. dreammaker888

    Need help with getimagesize

    OK. I've got it. Modified the ini file and everything works like charm. Thank you, thank you, THANK YOU.
  9. dreammaker888

    Need help with getimagesize

    Sorry, missed your post in the haste of testings. This is new to me. Where is php.ini residing?
  10. dreammaker888

    Need help with getimagesize

    Actually, my hosting is having problem with the getimagesize function when the jpg file is residing in another server (in this case at att.net). If I copy the file into the host server, the function worked and returned the proper array. The problem I have is, it is impractical for me to copy...
  11. dreammaker888

    Need help with getimagesize

    I may know why? It could be the encoding of the "~" in front of DMK. The space is %20, what is the encoding for ~?
  12. dreammaker888

    Need help with getimagesize

    I put this in a php file and when I ran it it returned nothing. What could be wrong? <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type"...
  13. dreammaker888

    Need help with getimagesize

    Can you post the complete code that got you those result? Thanks.
  14. dreammaker888

    Need help with getimagesize

    The value of $pic is "http://home.att.net/~DMK2/TriHead.jpg" It is a valid url. Back to the issue of array, using my code, how do you declare it. I am a little confused by your example. Thanks.
  15. dreammaker888

    Need help with getimagesize

    I have the following code but $ImageSize returns empty. What am I doing wrong? $result = mysql_query($qdf) or die("<BR>Invalid query: $qdf <BR>" . mysql_error() . "".$result); $row = mysql_fetch_array($result); $pic = $row['PicURL']; $ImageSize = getimagesize($pic); echo...
  16. dreammaker888

    How to detect if cmd.exe is running?

    I have a vb routine that involves calling a few Shell commands. The problem is they will open one after another just like they are open simultaneously. I want them to open one after the previous one is completed. What is the code to detect if the previous cmd.exe is still open? Thanks. dmk
  17. dreammaker888

    Vba coding with Outlook

    I thought that it was self-activated when I put it in the initialize_handler sub. How do I call it before receiving emails? Or should I put "Set myOlApp = CreateObject("Outlook.Application")" within the myOlApp_NewMail sub? dmk
  18. dreammaker888

    Vba coding with Outlook

    In the Outlook vba help file, it said . . . "This Microsoft Visual Basic/Visual Basic for Applications (VBA) example displays the Inbox folder when a new e-mail message arrives. The sample code must be placed in a class module, and the Initialize_handler routine must be called before the event...
  19. dreammaker888

    Displaying text when mouse over an object

    It turned out, what vragsbond had suggested works beautifully for us. We adopted the code from walterzorn.com and it works. The alt and titlte browser property was kind of limited. The timeout was too fast and it only display a short number of characters. The Sandeep's script had conflict...

Part and Inventory Search

Back
Top