Jump to content

tippy_102

Members
  • Posts

    446
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

tippy_102's Achievements

Newbie

Newbie (1/5)

0

Reputation

  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 ?
×
×
  • 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.