Mirage Source

Free ORPG making software.
It is currently Sat Apr 20, 2024 12:54 am

All times are UTC




Post new topic Reply to topic  [ 3 posts ] 
Author Message
 Post subject: PHP Examples?
PostPosted: Sun Jun 21, 2009 4:37 pm 
Offline
Community Leader
User avatar

Joined: Sun May 28, 2006 10:29 pm
Posts: 1762
Location: Salt Lake City, UT, USA
Google Talk: Darunada@gmail.com
Can anyone more skilled than I please post a few examples of reading a variable (stored in a text file or something? Not sure how this is done?) and writing said variable (from a form) to said storage when a "ok" button is pressed?

sick of weeding and want answers :D

_________________
I'm on Facebook! Google Plus LinkedIn My Youtube Channel Send me an email Call me with Skype Check me out on Bitbucket Yup, I'm an EVE Online player!
Why not try my app, ColorEye, on your Android devlce?
Do you like social gaming? Fight it out in Battle Juice!

I am a professional software developer in Salt Lake City, UT.


Top
 Profile  
 
 Post subject: Re: PHP Examples?
PostPosted: Sun Jun 21, 2009 5:01 pm 
Offline
Regular

Joined: Sun Apr 26, 2009 11:22 pm
Posts: 43
Location: Cincinnati, OH
Google Talk: rj.cox101@gmail.com
Reads in data from a form textbox & writes it to "testFile.txt" It then reads "testFile.txt" and displays the results
Code:
<html>
<head><title="PHP Test"></title></head>
<body>

<?php if ($_POST["submitData"] != "")
{
   $myFile = "testFile.txt";
   $fh = fopen($myFile, 'w') or die("can't open file");
   fwrite($fh, $_POST["submitData"]);
   fclose($fh);
} ?>

<form action="test.php" method="post">
<input type="text" name="submitData"/>
<input type="submit"/>
</form>

Data read from file:
<?php $myFile = "testFile.txt" or die("Can't open file");
$fh = fopen($myFile, 'r');
$theData = fread($fh,filesize($myFile));
fclose($fh);
echo $theData; ?>

</body>
</html>


Top
 Profile  
 
 Post subject: Re: PHP Examples?
PostPosted: Sun Jun 21, 2009 7:22 pm 
Offline
Community Leader
User avatar

Joined: Sun May 28, 2006 10:29 pm
Posts: 1762
Location: Salt Lake City, UT, USA
Google Talk: Darunada@gmail.com
thanks much :)

_________________
I'm on Facebook! Google Plus LinkedIn My Youtube Channel Send me an email Call me with Skype Check me out on Bitbucket Yup, I'm an EVE Online player!
Why not try my app, ColorEye, on your Android devlce?
Do you like social gaming? Fight it out in Battle Juice!

I am a professional software developer in Salt Lake City, UT.


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3 posts ] 

All times are UTC


Who is online

Users browsing this forum: No registered users and 5 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Group