Hello,
1)I have a variable that contains about 300+ characters and it will be printed out. And I want to have exactly 50 characters displayed in each single line. So how can I
perform break,<br> on it?
2)I am using the following logic to validate the form that is submitted via POST method, anyway I realize that the user can easily override the entire stuff by using QUERY STRING, say thescript.php?valid=1. Any idea?
<?
if($_POST['username'])
$valid=1;
else
$valid=0;
Sorry if these questions have been raised for tons of times.Thank you.