Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP implode(): Invalid arguments passed

Tags:

php

implode

I have a php form which has a checkbox option in which if the user selects 'Other', a text input appears. This is working well but the data is not submitting. Im gettting the error message PHP implode(): Invalid arguments passed

Here is:

PHP validation

if(!isset($_POST['competitor_model'])){   
echo '<p><font color="red" size="+1">• Please select at least one competitor model</font></p>';
} else {
$compmodel = implode(',', $_POST['competitor_model']); 
}

Here is the JS/HTML form

        <script type="text/javascript">
        var temp = '';
        function disableTxt() {
        var field = document.getElementById("other");
        if(field.value != '') {
        temp = field.value;
        }
        field.style.display = "none";
        field.value = '';
        }
        function enableTxt() {
        document.getElementById("other").style.display = "inline";
        document.getElementById("other").value = temp;
        }
        </script>         


        <input type="checkbox" value="BMW 3-series" onchange="disableTxt()"  name='competitor_model[]'>BMW 3-series<br>
        <input type="checkbox" value="Mercedes Benz C-class" onchange="disableTxt()"  name='competitor_model[]'>Mercedes Benz C-class<br>
        <input type="checkbox" value="Lexus IS" onchange="disableTxt()"  name='competitor_model[]'>Lexus IS<br>
        <input type="checkbox" value="Audi A4" onchange="disableTxt()" name='competitor_model[]'>Audi A4<br>
        <input type="checkbox" value="Other"  onchange="enableTxt(Number)" name='competitor_model[]'>Other <em>If yes please submit model</em>
        <input type="text" name="competitor_model[]" id="other" style="display:none;" value="<?php if (isset($_POST['competitor_model'])) echo $_POST['competitor_model']; ?>"/>
like image 257
AdamMc Avatar asked Nov 09 '15 03:11

AdamMc


2 Answers

$_POST['competitor_model'] is an array.Try this :

if (is_array($_POST['competitor_model']))
        {
        $compmodel = implode(",", $_POST['competitor_model']);
        }

or try so-

echo implode(', ', (array)$_POST['competitor_model']);

PHP implode()

like image 111
Sanjuktha Avatar answered Oct 21 '22 15:10

Sanjuktha


I faced the same problem and this is what worked for me in Laravel:

$contributes = $request->your_contribute;
$each_contribute = implode(',', (array)$contributes);
like image 39
Zymawy Avatar answered Oct 21 '22 16:10

Zymawy