> -----Message d'origine-----
> De : Philip Thompson [mailto:[EMAIL PROTECTED]
> Envoyé : vendredi 13 avril 2007 17:35
> À : php General List
> Objet : Re: [PHP] PHP editor
>
> On Apr 13, 2007, at 10:26 AM, Jay Blanchard wrote:
>
> > [snip]
> > Just showing my ignorance, probably,
> > but what exactly is meant by a "PHP editor"?
> >
> > Does it mean an editor for editing PHP scripts, or an
> editor written
> > in PHP?
> > [/snip]
> >
> > Something to edit PHP with...unless you're trying to be funny
>
>
> LOL! I don't know why this was so funny, but I laughed at
> Jay's comment (I can just see the light bulb turn on).
> Nonetheless, this "ignorant" user brings up a thought - are
> there any editors written in PHP?
<?php
If ($_SERVER['SERVER_ADDR'] != '127.0.0.1') die("Local acces only");
$content = '';
$file_content = '';
If ($_POST['filename'] && strlen($_POST['php_editor'] > 0) {
$file_path = '/tmp/' . $_POST['filename'];
if(!file_put_contents('/tmp/' . $_POST['filename'],$_POST['php_editor']) {
$content .= 'Error writing to '/tmp/' .
}
$file_content = $_POST['php_editor'];
}
If (isset($_POST['filename'] && strlen($_POST['php_editor'] == 0) {
$file_path = '/tmp/' . $_POST['filename'];
if (file_exists($filename)) {
$file_content = file_get_contents($filename);
}
}
$content .= '<form action="' . $_SERVER['PHP_SELF'] . '"><br />';
$content .= 'Filename:<input type="text" name="filename" id="telephone"
size="25" /><br />';
$content .= 'PHP:<textarea name="php_editor" id="my_editor" rows="10"
cols="71">$file_content</textarea><br />';
$content .= '<input type="submit" value="Save" />';
$content .= '</form><br /><br />';
?>
There is now :P
Regards,
Tim
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php