5
Como resolver o erro de PHP 'Aviso: conversão de matriz em string em ...'
Tenho um arquivo PHP que tenta ecoar um $_POSTe recebo um erro, aqui está o código: echo "<html>"; echo "<body>"; for($i=0; $i<5;$i++){ echo "<input name='C[]' value='$Texting[$i]' " . "style='background-color:#D0A9F5;'></input>"; } echo "</body>"; echo "</html>"; echo '<input type="submit" value="Save The Table" name="G"></input>' Aqui está o código para ecoar o POST. if(!empty($_POST['G'])){ …