dragontail Posted March 6, 2011 Share Posted March 6, 2011 I am trying to work on a code for php where you first have a form that asks the user to input a message then input a color. When they click the submit button it takes them to the output page. It should take their message and output it into boxes in a square. And the background should turn the color that they types in. Link to comment https://forums.phpfreaks.com/topic/229737-help-how-to-take-input-message-in-a-form-and-output-each-charain-a-square-box/ Share on other sites More sharing options...
Pikachu2000 Posted March 6, 2011 Share Posted March 6, 2011 And where are you stuck, exactly? Link to comment https://forums.phpfreaks.com/topic/229737-help-how-to-take-input-message-in-a-form-and-output-each-charain-a-square-box/#findComment-1183445 Share on other sites More sharing options...
dragontail Posted March 9, 2011 Author Share Posted March 9, 2011 this is what i have: echo '<table border="1" align="center" height="10px" width="10px" cellpadding="1" >'; for ($i=0; $i<$rows; $i++) { echo "<tr>"; { for ($n=0; $n<$cols; $n++) { $letter[] =$msg[$n]; echo "<td>".$letter[$n]."</td>"; } } echo "</tr>"; } echo "</table>"; i can't figure out how to continue a text input onto the next row and not have it repeat. example: red the code i have above would generate h e l l o h e l l o h e l l o h e l l o h e l l o instead i want it to be h e l l o creating a square matrix. thank you. Link to comment https://forums.phpfreaks.com/topic/229737-help-how-to-take-input-message-in-a-form-and-output-each-charain-a-square-box/#findComment-1184813 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.