Gordon Stewart wrote:

>On 6/16/05, Carl Seghers <[EMAIL PROTECTED]> wrote:
>  
>
>Hi there - I'm starting on a new MYSQL database (in the last few days
>- adding data/records now - further testing..)
>
>im wondering - Does the title[] thing work on GET statements ? 
>Or just POST ? 
>
>I'll prob get round to it / experiment on Saturday or Sunday - Just
>querying if anyones done it in the past ?
>
>  
>
It sure works with GET too.  And the good news is, it only takes a 
little thing like this to find out:

<?php
if (count($_GET)) { print "<pre>"; print_r($_GET); print "</pre>"; }
?>
<form method="GET">
<input type="text" name="title[]"><br/>
<input type="text" name="title[]"><br/>
<input type="text" name="title[]"><br/>
<input type="submit">

Rgds,
Carl



Community email addresses:
  Post message: [email protected]
  Subscribe:    [EMAIL PROTECTED]
  Unsubscribe:  [EMAIL PROTECTED]
  List owner:   [EMAIL PROTECTED]

Shortcut URL to this page:
  http://groups.yahoo.com/group/php-list 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/php-list/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to