Search results

  1. C

    PHP Foreach Help - Display only for Items Under Condition?

    foreach($shouts as $sbox) { $count++; // We'll split it into another array with list and explode. // If you have changed the way data stored, please modify the following line too list($recipient,$sender,$read,$avatar,$date,$time,$ipaddr,$message) = explode(" | ", $sbox); $shout = " ".$shout...
  2. C

    Input Form Next Line - HTML?

    I'm trying to make a contact form. I need help so that in the message input when you press enter it goes down to the next line of text so they can type on the next line just like in regular email forms. This is my input html so far: <p>Message:<br> <input type="text" name="Message"...
Back
Top