Jump to content

HELP! How to take input message in a form and output each charain a square box?


dragontail

Recommended Posts

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
Share on other sites

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.