Search results

  1. A

    What is the song that goies "But those golden days are over... ... long gone by"?

    Suddenly popped up in my head, just these words and a basic melody, but I cannot google it up for some reason. Anyone knows what song is this?
  2. A

    "Me.ActiveControl" in VB for Windows Mobile?

    I'm trying to create a WM6 version of my VB.NET application created in Visual Studio 2005. In several instances I have this, for example: If Me.ActiveControl Is xxx Then, which obviously checks if the particular element has got focus. But with WM SDK this doesn't seem to work, how should I do...
  3. A

    Possible to show list of users on a Roger Wilco voice channel on my website?

    Is this even possible to retreive the list of users with some HTTP request or something? Without launching the software at all. I'm talking about this Roger Wilco: rogerwilco.gamespy.com
  4. A

    Possible to show list of users on a Roger Wilco voice channel on my website?

    Is this even possible to retreive the list of users with some HTTP request or something? Without launching the software at all. I'm talking about this Roger Wilco: rogerwilco.gamespy.com
  5. A

    in PHP, I am echoing html <textarea>, which value is one element of an array, why do...

    ...i get an empty line after? I have a for() cycle for an array, each line then explodes and an html textarea is being echoed like that: <textarea name='pids".$i."' cols=50 rows=5>".$pins[2]."</textarea> It all works perfectly fine, but each time I end up having an empty line in the textarea...
  6. A

    A problem with authentication ($_SERVER['PHP_AUTH_USER'])?

    Hi I'm having a little problem on my website. I have two areas on my website that I want to be protected, so I have authentication set up on both, if(!isset($_SERVER['PHP_AUTH_USER'])) { Header("WWW-Authenticate: Basic realm=\"Admin Center\""); Header("HTTP/1.0 401 Unauthorized"); exit()...
Back
Top