Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- if(!empty($_GET['push'])){
- if($_GET['push']=="11"){
- $var1=1;
- echo "{push:".$var1."}";
- }else if($_GET['push']=="10"){
- $var1=0;
- echo "{push:".$var1."}";
- }else{
- $var1="unknown";
- echo "{push:".$var1."}";
- }
- }else{
- echo "tidak ada";
- $var1=0;
- }
- $fileContent="$var1";
- // $fileContent="\n"."{status:".$var1.",code:200}";
- //$fileStatus =file_put_contents("myfile.txt",$fileContent,FILE_APPEND);
- $fileStatus =file_put_contents("myfile.txt",$fileContent);
- if($fileStatus !=false)
- {
- $notif=true;
- //$myTextFileHandler = @fopen("myfile.txt","r+");
- //truncate the file to zero
- //or you could have used the write method and written nothing to it
- //@ftruncate($myTextFileHandler, 0);
- }
- else{
- $notif=false;
- //echo "gagal nulis :(";
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment