Jump to content

tippy_102

Members
  • Posts

    446
  • Joined

  • Last visited

    Never

Everything posted by tippy_102

  1. That's exactly what I needed. Thanks mjdamato!
  2. I have an array of prices and I want to return an array that contains all prices between two values. example: $test = array('2.50','2.75','3.25','3.70','8.45','9.20','9.45'); Say I wanted to grab all prices between 3.00 and 9.00 Is there a way to do this without walking through each value and testing for greater and less than?
  3. I have used Scorpion Inc with great results, but I do not know if they can produce PVC items as large as you require. http://www.scorpion.com.hk/ Yes, they speak English.
  4. It's kinda hard to fix your post if you don't post it and let us know what errors you are receiving. Please post what you have so we can have a look at it.
  5. You do not have it inside PresenceInfo use this $gamerscore=$xml->PresenceInfo->GamerScore;
  6. Have a look at the tutorial recently posted on phpFreaks: http://www.phpfreaks.com/tutorial/data-joins-unions Also, for future reference, SimpleXML is a part of php. It's not 3rd party, and, as the name implies, it's simple. $rss_file = @file_get_contents($cache_file) or die ("Data not available"); $rss = new SimpleXMLElement($rss_file); foreach ($rss->channel->item as $item) { echo "<a href='{$item->link}'>$item->title</a><br>{$item->data}"; }
  7. You can use a parser such as SimplePie or make your own using SimpleXML.
  8. HP offers Scrawlr for free. http://www.communities.hp.com/securitysoftware/blogs/spilabs/archive/2008/06/23/finding-sql-injection-with-scrawlr.aspx
  9. Does php-Fusion create rss feeds? If so, that would be the way to go.
  10. It's hard to say without seeing the code. Are they stored in the session? a cookie? the browsers cache?
  11. What forum software are you using?
  12. Replace $n = ""; With this: $n = "<div style='border: 3px dotted #0af; font-family: Tahoma; padding: 20px; padding-top: 0; font-size: 12px; background-color: #fafafa; margin: 50px;'><p><h2>REFERERERS (NEWEST FIRST)</h2></p>
  13. GD is enabled so it should work. Is the font name all lowercase or should it have a capital letter? Posting your code would also help.
  14. darknight - sounds like you are just trying to be difficult. I suggest you have a closer look at http://modxcms.com/ - If you looked into it, you would know it is not for blogging.
  15. Are you base64 encoding the file, then setting the Content-Transfer-Encoding: base64 ?
  16. There is quite a bit of discussion on memory usage on the imagecreatefromjpeg page on php.net ( http://ca.php.net/imagecreatefromjpeg ). Have you tried to change the limit using ini_set?
  17. How do you know what the current Team Division is? Is it set in the database, or are you clicking a link for it on the previous web page?
  18. Have you taken a look at MODx? http://modxcms.com/
  19. I am sorry to hear of your loss. Rest in Peace Casper.
  20. Congratulations on a job well done! The amount of work put into this site for our free use is greatly appreciated. Thank you to all who assisted in the development of the new site.
  21. That's a handy tool kdman. Add the ability to upload a file and attach it to the email and you've got yourself a real winner. I would prefer to see css rather than a table.
  22. nl2br - Returns string with '<br />' inserted before all newlines. http://ca3.php.net/nl2br
  23. Looks like the bots have broken your captcha. Have you changed it since posting this topic? Because the one you have there now looks like it would be pretty secure.
  24. Seeing all those short lines makes me think I should read it like a poem.....or take many deep breaths like Stevie from Malcolm in the Middle.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.