fwrite stands for file write. It is a function available with PHP, C, C++, etc. for writing the contents of string to the file stream pointed to by handle.

learn more… | top users | synonyms

0
votes
1answer
20 views

I'm writing to a csv file with htmlspecialchars(), when reading from the csv I special chars are viewed without escaping

When I'm writing to "Text.csv" the string: ' my name is "Robert" ', the string that is added to Text.csv looks like: my name is /"Robert/" ' . In my code, before writing to the csv file, the $_POST ...
0
votes
2answers
47 views

Strange value when reading from binary file with fread() in C

I have an issue that I can't solve... I used fwrite to write an int value (among other values that come from a struct) into a file that I've opened using fopen(file, "wb"); This worked fine, and ...
0
votes
0answers
22 views

Strange behavior using POST and Fwrite (CLOSED)

*******The issue was caused by the api being called twice, giving a ghost blank datpull, and then a second correct datapull that the user didn't get redirected to** I am using another companies API ...
0
votes
0answers
8 views

Wordpress shortcode that writes random number to a file

I'm trying to maybe do too much in a shortcode. Here's the code I have: //[rand] function randnumber_func( $atts ){ $digits = 4; $randnumber = rand(pow(10, $digits-1), pow(10, $digits)-1); ...
0
votes
5answers
55 views

how to write php code to a file with php

For part of my website I need to be able to write php code to a file with php. For example: $filename = "RtestR.php"; $ourFileName =$filename; $ourFileHandle = fopen($ourFileName, 'w'); $written = ...
0
votes
1answer
19 views

when php fwrite large string on network drive, puts junk or missing part

My php script needs to write text file, (actualy write php code), in order to include it on the next run. So I have all my data (arrays) from the previus run, with out the use of database. The files ...
0
votes
2answers
21 views

arrangement of text file using PHP

I am working on a tool to export some data from database to the text files. The code is given below: $query3=mysql_query("SELECT * FROM records WHERE domain_id=".$domainID." AND type='NS' ORDER ...
0
votes
0answers
42 views

fwrite EPIPE error

I have a file test.txt, and there is some text in it, abc I open it in "r+b" mode, read the whole 3 characters, and then append "defg" right after it, so after this operation, the contents of the ...
0
votes
1answer
32 views

PHP - Creating a PDF. How can I get this working? Errors populating

below is my php script that parses data and returns it on a webpage. I've attempted to integrate code with the TCPDF library, but I can't seem to get it to work. I'd like to generate a pdf file that ...
0
votes
1answer
15 views

What errors do I have in my php code to create a new directory and then save a file in that new directory

So, I have been trying to de bug my code for hours now, and I whilst I am not a developer, and very novice to php, I cannot find my syntax or logic error: In general, I am trying to develop a code ...
0
votes
0answers
28 views

ZipArchive extract with php makes folders files

I use the following code to extract folders and files one by one from a zip file. $source = 'adirectory'; $target = '/var/www/html/myextractionpoint'; $zip = new ZipArchive; ...
0
votes
2answers
13 views

Open an XML file and replace a specific character in it using PHP

Currently I have an XML file <?xml version="1.0" encoding="UTF-8"?> <Workflow xmlns="http://ns.adobe.com/acrobat/workflow/2012" title="HongKong2_Convert_img" description="" majorVersion="1" ...
-7
votes
0answers
76 views

Can you tell me why does my C program crash?

everyone! I pasted the code below. When I run the program and select the first option in the menu, I have to add new inhabitants to a block. The program should read the data about that block from a ...
0
votes
1answer
20 views

PHP: invert/reverse file line order when include()d OR when writting with fwrite

I have created a small module that allows users to add small messages when entering a webpage. For that, it writes them down into a html document (msg.html) and later in the page I include() it into a ...
0
votes
2answers
25 views

why does this code work without an fwrite statement?

I am trying to understand curl/fopen in PHP. the Following function works fine, but I expected at some point to see fwrite. function cURLdownload($url, $file) { if( !cURLcheckBasicFunctions() ) ...
0
votes
1answer
39 views

Writing to a file and loading content / suggestions-like

I have the code to a simple form page. It writes to a file and loads the content with include() but it doesn't work. Any of you could tell me where am I mistaken? The error is that it doesn't write ...
0
votes
0answers
47 views

Text Hit counter not working

I have a php based hit counter that i'm trying to setup. Even though the code is in an if statement, the hit count is updated anyways. <?php ob_start(); //Standard Includes ...
1
vote
0answers
50 views

Using fwrite in MATLAB to graph constant double values in Simulink Scope blocks?

I am currently trying to use UDP to send constant values from MATLAB to Simulink and then use Simulink to graph these values. Here is an image of the MATLAB code, Simulink block diagram and the graph ...
1
vote
2answers
37 views

fread() doesn't work but fwrite() works?

Why fread() doesn't work but fwrite() works? If I get fwrite() into comments and fread() out of comments, the output file is of 0 bytes size... But if fwrite() is out of comments, the output file is ...
0
votes
0answers
21 views

Aborted (Core dumped) error while writing file

I could successfully write the file using code: #include <stdio.h> int main( ) { int length, i = 0, wd; int fd; //char buffer[BUF_LEN]; FILE *fk; //char buffer[EVENT_BUF_LEN]; ...
-1
votes
1answer
40 views

PHP write to file from included script file [closed]

I have one script, let's call it "main" php script, there is another script, call it "writer". And I have a xml file. My "writer" get's info from db and writes it to the xml. All work fine if I ...
-1
votes
1answer
41 views

Write data to TXT file [closed]

I need to write some data into the txt file to be able to open it in MS Excel and get each value in a separate cell. How to do this? $file = "outputs.txt"; $handle = fopen($file, 'w'); $data = ""; ...
1
vote
1answer
25 views

fwrite and hiding symbols [closed]

I have an application that is used to edit .txt files. It opens the selected file, writes to a file and closes the file. Each file that has to be edited has special characters e.g. [, ', =, _, ;.` ...
2
votes
1answer
38 views

Selecting file to be edited

i have an application that is used to edit .txt files. the application is made up of 3 parts Displays contents of a folder with the files to be edited(each file is a link when clicked it opens on ...
0
votes
3answers
48 views

Open function with CSV file on Python

Okay, what I want to do is to write something into a CSV file. I'm doing this: directory = open('docs/directory.csv', 'a+', encoding='utf-8') name = input('Please insert a name: ') phone = ...
1
vote
2answers
65 views

saving to text file with submit button

I have this code that displays contents of a particular file. I would like to add a submit button that when clicked saves the changes in to a file. Can anyone help me or give some examples that i can ...
0
votes
2answers
28 views

Variables not being fwritten

I've been trying to create a form that creates a ticket in the form of HTML to easily organize things and view the issue, however every time I try to test this, it only shows the variable as $variable ...
1
vote
4answers
88 views

(Solved) PHP fwrite() how to insert a new line after some specific line

I'm new here. Anyway, I did my research on fwrite(), but I couldn't find solution, so i'm asking for help. What I want is f.e. to add a new line of text after some other specific line. F.e. I have a ...
1
vote
1answer
53 views

fgets(STDIN) automatic line break?

I noticed something with fgets(STDIN) in php I have this code : if($fd = fopen($filename, "a")){ $message = fgets(STDIN); $message = $message.":"; echo $message; //fwrite($fd, ...
2
votes
2answers
103 views

fwrite not return 0 when harddisk is full in linux why?

when hard disk is 100% full, fwrite(say 1000 Bytes) return 0 [Fail , as expected] but when hard disk is has little empty space say 600Bytes , then fwrite (1000 bytes) not return 0 [fail] but return ...
0
votes
2answers
29 views

PHP String Comparison not working as expected

I have the following snippet of code that I am trying to use to read a file that can have some lines repeated two or more times. The goal of this script is to only write unique lines (no duplicates) ...
0
votes
2answers
96 views

Can i use fgetc() or fputc() in a binary file?

I am creating an archive program in C, and i want it to save files i provide, list and extract them. I had many issues because i used a text file for saving, and it is not the best choice if i want ...
0
votes
2answers
75 views

using fwrite and double pointer to output 2D array to file

I've dynamically allocated a 2D array, accessed w/ a double pointer, like so: float **heat; heat = (float **)malloc(sizeof(float *)*tI); // tI == 50 int n; for(n = 0; n < tI; n++){ // tI ...
0
votes
1answer
23 views

Using fwrite in Visual C++ 2005

I'm used to using fwrite to write the contents of a buffer to a file in gcc. However, for some reason, fwrite doesn't seem to work correctly in Visual C++ 2005. What I'm doing now is to convert a ...
0
votes
2answers
66 views

PHP - Write text file content in another text file

I want to check if the content of a text file is the same as another, and if it isn't, write one into the other. My code is as follows: <?php $file = "http://example.com/Song.txt"; $f = ...
0
votes
0answers
52 views

fwrite in C with paillier cryptosystem library functions

I have seen all the other Q&As regarding fwrite() but haven't been able get my code right. The following is the structure and function signature given in the paillier header file: /*This is a ...
0
votes
3answers
31 views

WordPress fopen getting directory link

I'm using fwrite to create an html file in a folder within my plugin. The following code now allows me to write to the folder, but the link it tries to open is the full system path. function ...
1
vote
1answer
43 views

Wordpress not writting to folder using fwrite();

I have some php script that writes an html file to a folder. This works perfectly outside of WordPress. But when I try to incorporate my code into a plugin, it won't write to a folder anymore. I've ...
1
vote
1answer
38 views

Writing info from an array and cookies to a text file with PHP

I'm trying to write info from an array and from cookies (that have been put into variables, i.e. $usergatsby) into a text file that has been created with PHP. Below is the code of what I would like to ...
0
votes
0answers
40 views

Issue with file I/O on android

I met a problem recently. I need to write some tmp data to the file(use API fwrite) in /data/data/com../tmp on Android. The test program just run on one thread. and write data several hundred KB one ...
0
votes
1answer
41 views

Creating a text file with PHP?

I'm trying to use PHP to create a text file, but I keep getting the "can't open file" error. Can anyone tell me what I'm doing wrong? chmod('text.txt', 0777); $textFile = "text.txt"; $fileHandle = ...
0
votes
1answer
48 views

Writing data to .cof file

I'm very new to coding and have been utterly baffled (for the second time today) by something google can't fix. I am writing code using Code Composer 4 on Windows. My code has no errors but the ...
0
votes
0answers
59 views

fwrite() function erase .txt file but do not write in it

I'm stuck with a problem fwrite() in PHP. I'm using Raspberry Pi with running server on it Apache2. This code works perfectly on Windows. The problem is that I cannot write anything to the file. The ...
0
votes
1answer
37 views

PHP: “Hot” File Write or sqlite

Does PHP provide an option to keep a file open instead of re-opening whenever the script is started? My script is called around 500 times per second and can be compared to a counter script, which ...
0
votes
1answer
125 views

Warning: fwrite() expects parameter 1 to be resource, null given

I am working on a facebook app and I am trying to write in a file that was opened in another php, but doesn't seem to work. My code looks like this: myphp.php include 'utils.php'; ...
0
votes
1answer
166 views

Save an excel/cvs file from mysql using PHP [run via a cron job]

I have some results from a mysql table that I would like to export, I am currently able to click a download link and download an xls but I would like to be able to run this via a cron job and have the ...
0
votes
1answer
43 views

Using fwrite() and displaying the text in a text box before submitting but every time i submit my text saves and then a number is saved after it?

I am using fwrite() to write to a .txt file. I have a home page which displays the text from the .txt file. seems to be working ok. I then have an 'admin' page which on submit, will fwrite() the ...
0
votes
1answer
64 views

Broken PHP script - fwrite and variables

Processing $_POST data through the following PHP script with 'mike' and 'tampa' being the post data: <?php $name = $_POST['name']; $city = $_POST['city']; $fh = fopen('variables.php', 'w') or ...
1
vote
0answers
41 views

fwrite/write in c code stalls when writing to local disk

We have data processing code (written in C) that has very large input data and very large output data (both exceeding the size of the memory). To do the processing, we need to read in only a portion ...
0
votes
3answers
65 views

PHP Process Won't Overwrite With Fwrite

I have a problem. I've tried this with localhost on my PC and I have checked every single possibility that I can think of, but the problem still exists. So here it is: When I click on a link "Equip" ...

1 2 3 4 5 11