Jump to content

vinson_isap

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

vinson_isap's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hello, I am not sure, but this small routine can capture an un-secured site and convert it to a string. <?PHP if(!function_exists("file_get_contents")) { function file_get_contents($filename) { if(($contents = file($filename))) { $contents = implode('', $contents); return $contents; } else return false; } } $origin2 = 'http://nl2.php.net/file_get_contents'; $siteval = file_get_contents($origin2); echo '<br><br>'; echo $siteval; echo '<br>'; ?>
  2. Hello, I am a new PHP person and was assigned to work with TWYP (ING bank - credit card connection). I wonder IF anybody had try working with this kind of activities before Please advise. As of today, I can send transaction but can not pickup the returned XML data. TWYP where i am connecting too does not send the result XML format as a file, It is send via result set like a stream i think i am not sure at all. Please advise and Thank You..... Cheers !
×
×
  • 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.