Go Back   CodingForums.com > :: Server side development > PHP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 07-11-2002, 09:37 PM   PM User | #1
mouse
Regular Coder


 
Join Date: Jun 2002
Location: North East England
Posts: 853
Thanks: 0
Thanked 0 Times in 0 Posts
mouse is an unknown quantity at this point
Online page editor

Hi
Does anyone have a script for editing pages online - as some free space hosts use - even a pretty basic one would be good.

thnk you
__________________
[+] Computer/PC issues [+] Silverpaw3D
------------------------------------------------
Never buy a dwarf with learning disabilities...

...it's not big, and it's not clever.
mouse is offline   Reply With Quote
Old 07-11-2002, 11:11 PM   PM User | #2
Robbie
New Coder

 
Join Date: Jul 2002
Location: Behind my PC :)
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
Robbie is an unknown quantity at this point
http://www.hotscripts.com/PHP/Script...le_Management/

some scripts hold an editor inside, you have a peak at the source code of it
Robbie is offline   Reply With Quote
Old 07-12-2002, 06:18 PM   PM User | #3
IKinsler
New Coder

 
Join Date: Jul 2002
Location: Regina, Saskatchewan, Canada
Posts: 35
Thanks: 0
Thanked 0 Times in 0 Posts
IKinsler is an unknown quantity at this point
If you would like to make one, you can use fopen().

<textarea name="code" cols=40 rows=8><?php
$file = "editme.txt";
$open = fopen($file, "r"); //"r" means read, "a" means append, "w" means overwrite
$code = file ($file);
fclose ($open);

for ($i=0;$i<count($code);$i++) {
echo $code[$i];
}
?></textarea>
__________________
Jared Brandt
IKinsler
IKinsler is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 01:06 AM.


Advertisement
Log in to turn off these ads.