The fputs tag has no wiki summary.
3
votes
5answers
107 views
c : gets() and fputs() are dangerous functions?
In the computer lab at school we wrote a program using fputs and the compiler returned an error gets is a dangerous function to use and a similar error for fputs
but at home when i type in this bit of ...
1
vote
1answer
55 views
fputs(): supplied argument is not a valid stream resource
Hi I'm trying to add private proxy support to a PHP class that is using fsockopen rather than cURL and I'm a bit lost with it!
I have the following code which is producing an error warning for each ...
1
vote
1answer
133 views
How to read multiple lines of input from user using fgets and write it into a file using fputs in C?
I wanted to read input from user (multiple lines) and write it into a file using fputs().
Here is my code
#include<stdio.h>
#include<stdlib.h>
int main()
{
FILE *fp;
char s[25];
...
1
vote
3answers
121 views
C++ Make a file of a specific size
Here is my current problem: I am trying to create a file of x MB in C++. The user will enter in the file name then enter in a number between 5 and 10 for the size of the file they want created. Later ...
1
vote
3answers
72 views
php file writing problem
I have a script which constanly append strings into a file.
For example (this is a test script):
$i = 1;
$file = 'wikipedia/test.txt';
$text = 'the quick brown fox jumps over the lazy dog';
...
1
vote
1answer
229 views
fwrite , fputs byte safe
I want to send data via POST to a php page, I need to store the bytes exactly as they are but I wasn't able to do it. When I send 138 bytes, fputs and fwrite returns 133.
$fh = fopen($myFile, 'ab') ...
1
vote
1answer
239 views
Rewriting some code using fsockopen to use curl instead
My host doesn't allow fsockopen, but it does allow curl. I'm happy using curl from the cli, but haven't had to use it with PHP much. How do I write this using curl instead?
$xmlrpcReq and Length are ...
0
votes
1answer
33 views
How to write to file with most recent record first
I have code that runs once daily and fputs() appends a daily log entry to a flat file in the format:
yyyy-mm-dd|log entry
This file is then displayed by a web page that fgets() and displays all ...
0
votes
1answer
46 views
newsgroup nntp protocol talk with fsockopen - how to get size
In the code below I can get a list of "message-id"s in a group I selected earlier.
Now with that info I can retreive the header with
head "message-ID"
how do I find out what the size of the article ...
0
votes
3answers
127 views
C Program terminates after if/else or repeats if I use fputs/fgets
I am very new to C and have dabbled in Objective-C, AppleScript, and HTML/CSS. I'm sure that my problem is very easy to solve. I am trying to write something that will allow me to input source data ...
0
votes
2answers
68 views
Implementing 'cat' in c - wwwmc? (What's wrong with my code)
My code works fine in a way. I have two issues with it though. One, at the end of printing the files to the standard output, it gives me a segmentation fault.
Two, I can't use fputs to print out the ...
0
votes
2answers
71 views
SMTP does not send HTML message
Good morning,
I'm trying to send SMTP mail with HTML message. But not this gets the message.
So I did a test. Text messages sent successfully. Html message and sends it with little success.
And ...
0
votes
1answer
45 views
creating and writing a file in Worpress using PHP
I would like to create a file to cache my lookups (coordinates and so on). I don't know why but I cannot create and write to it within Wordpress. I am using this code for a try:
<?php
$filename ...
0
votes
5answers
54 views
How to write to file from char[][]?
I am gathering data into a char[][] array, then let a user choose which of those string to write to a file. So I'm doing for example
char arr[3][3]; // assume there are three different two-char long ...
0
votes
2answers
136 views
fputs/puts dangerous (in C)?
I've been having trouble with fputs lately: when printing some strings in a text file with fputs, it happens I get other characters than A-Z, a-z, 0-9 in (chars that aren't part of the string). I made ...
0
votes
2answers
61 views
Beginner Help: Creating and Storing Text Using PHP
I'm trying to write a program where the basic idea is I ask the user for input in a textarea, and then the text gets stored into a word file. Here is the code I'm trying to use:
<html>
...
0
votes
2answers
192 views
fputs GET to curl
I have this script which requires allow_url_fopen = On which is not a good idea and I want to change curl. I'll appreciate if any one can help me out with how to do the fputs GET.
$SH = ...
0
votes
1answer
88 views
C++ fputs Assert on Windows 2008 Server
In the below code the fputs(...) throws an assert when running on Windows Server 2008. I don't have this problem on a Vista or XP machine. I'm at a loss as to what is causing it?
The assert is: ...