Recent content by Crashsector

  1. C

    FS: Dell 16 Port Switch, D-Link Router, Linksys VoIP Adapter

    Switch and router still available.
  2. C

    FS: Dell 16 Port Switch, D-Link Router, Linksys VoIP Adapter

    Dell 2216 16-port 10/100 switch Perfect condition, switch and power cord only. Guaranteed non-DOA. Was $50, now $40 shipped. D-Link DI-624 WiFi Router Perfect condition, barely used, guaranteed non-DOA. Router, power cord, and two Ethernet patch cables included. Was $30, now $25...
  3. C

    FS: Motorola Cable Modem (SB5100), D-Link Router (DI-624) w/pics!

    Modem is sold... router is still up.
  4. C

    FS: Motorola Cable Modem (SB5100), D-Link Router (DI-624) w/pics!

    For sale: Motorola SURFBoard 5100 (SB5100) Cable Modem - $40 shipped Motorola Data Sheet This is what I was using with Comcast - works flawlessly, guaranteed non-DOA. The MAC has been completely deregistered with Comcast's system so don't think you're gonna get free cable... D-Link...
  5. C

    GUI Programming Questions

    Well, I have an idea for a standalone application that will be very heavily database driven (MySQL actually). I was just wondering what I should look for in someone to work with for making the application. Hence, I wouldn't be learning anything :) Just trying to find out what skillset I...
  6. C

    GUI Programming Questions

    Hello everyone. I'm a database guy and I have some ideas I'd like to discuss about GUI programming. First off - which OS, if any, do you think is easiest to program GUIs for (Windows, Linux, OSX, etc.)? Which of the above create the best GUIs, if different? Would a cross-platform...
  7. C

    Easily parse an XML result with PHP?

    Damn you, why do you have to go and make it that simple. I was so excited when I figured out a way to do it on my own :( In all seriousness - thanks, that really helps. At first I thought that I didn't have access to the simplexml libraries since I'm using a Windows binary of PHP, but I...
  8. C

    Easily parse an XML result with PHP?

    Yet again I seem to have answered my own question. I ended up using a combination of file_get_contents to import the XML result into a string and strpos to search for the location of the three XML tags I needed. The actual code looks like this: // x $xml = file_get_contents(...
  9. C

    Easily parse an XML result with PHP?

    This should be my last question with this project. An element of my task requires me to submit a URL to Amazon and parse the XML result. I only need three elements of the actual XML file. This is an example of the file: &#8722; <ProductInfo...
  10. C

    PHP issues with functions (globals?)

    After actually opening my PHP book (ick), I realized globals are what I needed. The reason they didn't work last time is I was setting the variable, then defining it as global. You need to do this the other way around for it to work. Whodathunkit.
  11. C

    PHP issues with functions (globals?)

    No go. This seems so simple, but then again, most things do at the beginning... If it makes a difference, I have three variables that I need to be available outside the script, not just one.
Back
Top