RE: Dynamic Form 'on The Fly'

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 




with this is a simple text :

 

$this = 'thisline' . $cnt;


echo $_POST[$this];

 
Carlos A. Garcia Hernandez


 

> Date: Wed, 18 Mar 2009 12:12:54 -0700
> From: Cool@xxxxxxxxxxxxxxxx
> To: php-general@xxxxxxxxxxxxx
> Subject:  Dynamic Form 'on The Fly'
> 
> Using a repeating region of a query, I want to generate a 'form on the fly'
> 
> So for each repeat - I have an extra form input....
> 
> Each input name = thisline<?php echo $cnt; ?>
> 
> So it will make names like:
> 
> thisline1
> thisline2
> thisline3
> Etc.
> 
> For the form fields
> 
> -------------------------
> 
> 
> $cnt = 1;
> <form action="form1.php" method="post" name="test1">
> 
> Repeat.....
> 
> <input name="go<?php echo $cnt; ?>" type="text" value="" size="5"
> maxlength="5" />
> 
> <?php $cnt++; ?>
> 
> Repeat..................
> 
> ------------------------------------
> 
> Q: how do I code the POST line to READ this when processing this form?
> 
> like:
> 
> $cnt = 1;
> 
> <?php echo $_POST['thisline$cnt']; ?> ???? Doesn't work...?
> <?php echo $_POST['thisline'].$cnt; ?>???? Doesn't work...?
> 
> Not this either...
> $this = 'thisline'.$cnt;
> echo $_POST['$this'];
> 
> 
> $cnt++
> 
> Q: ANY Ideas?
> 
> 
> --
> Thanks - RevDave
> Cool @ hosting4days . com
> [db-lists 09]
> 
> 
> 
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 

_________________________________________________________________
¿Quieres transformarte en un emoticón de Messenger? Descubre cómo
www.messengernews.com.mx

[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux