>Hi, I'm trying to make a little script to edit arrays.
>For example, i have an array file named config.php, and it holds this:
>
><?php
>$config = array(
>        'email' => 'E-mail',
>        'meta_author' => 'Author',
>?>
>
>I wish to edit this file, through another file, named edit.php, or
>admin.php, i would like to use forms for it. At the moment i've found out
>how to show the arrays within a text field, but now i wish to edit them
>through the same text field. With buttons etc.
>
>Here's how i call the arrays from the file:
>
><input name="hiddenfield" type="text" value="<?php print $config[email];
>?>"> <input name="hiddenfield" type="text" value="<?php print
>$config[meta_author]; ?>">
>
>Is there anything that can let me edit it? I think i will have to edit it
>through a form, it might be simple, though it might not be, please help me
>out!

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to