Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~5K People Reached
Favorite Forums
Favorite Tags
Member Avatar for mithesh

<?php printf("This is the first line. \n"); printf("This is the second line"); ?> This is the code but it isnt printing in new line.

Member Avatar for prabhjots226
0
5K
Member Avatar for bearcatFulton

I am looking to make a list of checkboxes from items in a database like so. [CODE] while($row = mysql_fetch_array($cropsResult)){ echo "<tr><td class=\"toBuyList\"><input type=\"checkbox\" name=\"hay[]\" value=\"" . $row['cropType'] . "\" tabindex=\"5\"/> " . $row['cropType'] . "</td></tr>"; } [/CODE] I have not been able to get any items on that dynamic …

0
52
Member Avatar for bearcatFulton

I am looking to create a message with several lines, but when I put my string into the mailto statement I can't find a newline character that works.[CODE]$MESSAGE_BODY .= "Message: " . nl2br($_POST["message"]) . "\n"; print_r($MESSAGE_BODY); echo "<a href=\"mailto:bearcatFulton@gmail.com? subject=Angus and Alfalfa Contact& body=$MESSAGE_BODY\">Send this message</a>[/CODE] I've tried \n\r, <br>, …

Member Avatar for bearcatFulton
0
88