Re: $pieces = explode(",", $_POST["fieldtype1"]);

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

 



On Mon, November 7, 2005 11:00 pm, John Taylor-Johnston wrote:
> $pieces = explode(",", $_POST["fieldtype1"]);
>
> What is a way to echo each pieces[x] separately so I can echo them
> like
> this:
>
> while(x=0 to xMax)
> {
> $sql .= "`".$pieces[x]."` \r\n";
> }

foreach ($pieces as $piece){
  $sql .= "'$piece'\r\n";
}

Though you probably don't really want the \r\n in there...

But you may find this even easier:

$pieces_sql = implode("', '", $pieces);
$sql .= "'$pieces_sql'";

In between explode($_POST) and whatever you do, you REALLY ought to
call mysql_real_escape_string on each $pieces element.

-- 
Like Music?
http://l-i-e.com/artists.htm

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


[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