The fputs tag has no wiki summary.
0
votes
2answers
25 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) ...
1
vote
1answer
87 views
fputs vs. fprintf and double
I need to put out a double value into an file.
So for all my other string i have to put out i use fputs because i think and timed it that fputs is faster then fprintf.
But if i want to put out the ...
1
vote
2answers
193 views
C phonebook program: Reposition cursor in text file to start of previous line
writing a C program which opens a text file called phoneList.txt and searches for contacts (firstname, lastname, phonenumber), and updates an existing contact's phone number. My issue is in the ...
1
vote
2answers
56 views
How do you retrieve the first n lines of a file? (php)
$fileName = file ("gstbook.txt");
$rows = count ($fileName);
// $Char is the string that will be added to the file.
if ($Char != '')
{
$Char = str_replace ("\n","<br>",$Char);
$Char = ...
0
votes
0answers
49 views
echoing request with fputs
I'm using the code below, to post a request to an API. For debugging purposes: is there a way to echo the full Request (including the Header) that is sent by this code?
$data = ...
1
vote
2answers
999 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
votes
3answers
86 views
Simply fputs() example returns EOF
This simple program, gives me troubles in fgets(), returning EOF, that is an error value for fgets()
I don't understand where is the problem
#include <stdio.h>
#include <stdlib.h>
...
-1
votes
3answers
255 views
Searching for specific words in a text file
HI guys havent been able to find how to search for specific words in a text file anywhere, so here it goes, this is what I have now and just read and prints the entire text file.
#include ...
0
votes
1answer
55 views
Turning form input into text in a file using php
I have a HTML form with the following:
<form method="POST" action="/subscribe/subscribe.php">
<p><input type="text" name "Email" value="your@email.com" ...
1
vote
1answer
232 views
Save php output into variable when using fsockopen
I'm trying to build a php script, which connects to a telnet server and runs a few commands.
I would like to save the returned output of a command into a variable.
Example:
Command: Give me a ...
0
votes
0answers
36 views
fsockopen - ignore automatic data sent from the server
I have a bit of code, below, which connects to the server and then I send an xml command which causes the server to send me the requested data in xml format.
My issue is that when the fsockopen ...
0
votes
3answers
757 views
PHP fputs not working
I have the following code to create a LOG file.
It is implemented inside "download.php", a script to force download which I call from download links such as:
<a ...
-1
votes
1answer
124 views
php - ob_start / fputs suddenly doesn't work anymore, is there anything that can stop it? [closed]
My code:
function log_this($to_log, $prepend = null){
ob_start();
$fn = '../info.log';
$fp = fopen($fn, 'a');
fputs($fp, "\r\rnew log -------- \r\r");
...
0
votes
2answers
413 views
how to write the cursor's data in a txt file? visual fox pro
well i have a cursor for example
select col1, col2, col3, col4, colN from cursor into into array thecursor
my current cursor is the cursor
i have got all its data information including null, null ...
2
votes
3answers
217 views
Overwrite to a specific line in c
I have a file of about 2000 lines of text that i generate in my program, every line has the information of an employee and it's outputed like this
1 1 Isaac Fonseca 58 c 1600 1310.40 6 1 0.22 ...
0
votes
2answers
86 views
Merge - Compare - Output (C)
I am creating a program that takes two .txt (data1.txt, data2.txt) files that contain integers that are stored in ascending order and merging them in a output.txt (data3.txt) in ascending order. I am ...
1
vote
1answer
184 views
Send Backspace or Delete using Telnet in PHP
I'm using this nice piece of code to connect to a Telnet session and send it some commands and get the output.
http://www.geckotribe.com/php-telnet/
I'm running into an problem now in that I want ...
1
vote
4answers
528 views
create PHP array using fopen with append
I am having trouble figuring out how to write to a file using fopen "a" append mode.
the file itself is a simple PHP array:
$array = array(
"entry1" => "blah blah",
"entry2" => ...
1
vote
1answer
167 views
File writing conflicts : file_get_contents() & fputs()
Im at a bit of a loss, i have 2 scripts 1 which pulls email attachments from a mailbox and a second one which then parses the attachments and adds them to the DB.
This works ok most of the time, but ...
1
vote
4answers
624 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 ...
0
votes
1answer
77 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
224 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 ...
1
vote
1answer
1k 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];
...
0
votes
3answers
332 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
146 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 ...
1
vote
3answers
913 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 ...
0
votes
2answers
231 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
287 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
81 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 ...
1
vote
3answers
176 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
2answers
271 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 ...
1
vote
1answer
467 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') ...
0
votes
2answers
212 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
342 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 = ...
1
vote
1answer
586 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
142 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: ...
