Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8857815
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T14:41:05+00:00 2026-06-14T14:41:05+00:00

I am newbie in web development. I have LAMP installed on Ubuntu 12. I

  • 0

I am newbie in web development. I have LAMP installed on Ubuntu 12. I have a php file “register.php” running on LAMP server which receives data from a html form and then saves it on server in a temp file. I am using below code. It does not seem to work. I’ve checked that it has required access and permission to execute the code but still it could not create the “temp.c”

$temp=fopen("temp.c","w");
$line = fgets($temp)
fclose($temp);

Additional Note(s):-
I am able to receive other data from the form fields but only creation of file does not work.

Thanks for your help!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T14:41:06+00:00Added an answer on June 14, 2026 at 2:41 pm

    Put Semicolon after fgets function like

    $temp=fopen("temp.c","w");
    $line = fgets($temp);
    fclose($temp);
    

    I worked as i verified on my local server….

    My advice to you is to use NETBEANS IDE for PHP development as it will display Syntax errors automatically, when you are writing the code…..

    To insert form data in file use following code

        $entry=$_POST["myvar"];
        $file="temp.c";
        $open=fopen($file,"a");
    
        if($open){        
          fwrite($open,$entry);
            fclose($open);
        } 
    

    ‘a’ in fopen($file,”a”) Open for writing only; place the file pointer at the end of the file. If the file does not exist, attempt to create it.

    ‘a+’ in fopen($file,”a+”) Open for reading and writing; place the file pointer at the end of the file. If the file does not exist, attempt to create it.

    ‘w’ in fopen($file,”a+”) Open for writing only; place the file pointer at the beginning of the file and ==>truncate the file to zero length<==. If the file does not exist, attempt to create it.

    Consult this for more info

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i am a newbie on web development, so i have some problems first of
I am a newbie in web services. I have a JAX-WS service which I
Newbie to web-services, so asking few basic questions I have a some data around
I am a newbie at web programming. I have basic PHP programming skills. From
I have to tell you guys first that I'm a newbie of web development
As a newbie in the world of web development, I have a handful of
I am a newbie to Java Web Application development. So far all I have
I'm new to php coding, web development, and search optimization - so newbie overall.
I am a newbie in OSx development. I have a Cocoa application which uses
Hi i'm a newbie to iphone application development.. present i'm working on Picasa web

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.