|
Posted by mbstevens on 04/08/07 03:07
On Sun, 08 Apr 2007 02:48:30 +0000, Dave Kelly wrote:
> To store the data on the server, am I correct to say an array is created
> and for
> this example the array has a name of 'describe[]'?
There are many ways to store things on a server, but all envolve writing
to files. What one language describes as an array another might describe
as a structure or list or something else. Your question about an array
has no general meaning given the data that follows.
>
> <div style="text-align: center;"><h2>Personal Data</h2></div>
> <p>Your Name: <input type=text name=describe[] size="40%"
> maxlength=256>
> Tel: <input type=text name=describe[] size="30%" maxlength=16>
> Date of Report: <input type=text name=describe[] size="10%"
> maxlength=16></p>
> <p>Your Address: <input type=text name=describe[] size="60%"
> maxlength=1024>
> E-Mail: <input type=text name=describe[] size="30%"
> maxlength=1024></p>
> </body>
>
> I need to fill the [] with a number. I had wanted to write a shell script
> to do that. I have googled for 2 days and have yet to discover how
> to increment a numerical variable in 'sed'.
What I *think* you *might* be trying to do is some kind of templating.
Forget sed. Use Perl or Python or Ruby templating facilities. Google
"perl template," "python template," etc.
--
mbstevens
http://www.mbstevens.com/
Navigation:
[Reply to this message]
|