Webmaster Forums - Webmaster forum for HTML, PHP, ASP, CSS and more - View Single Post - PHP Code question
View Single Post
Old 06-15-2009, 05:32 PM   #3 (permalink)
Pachel
Junior Member
 
Join Date: Jun 2009
Posts: 12
Default Re: PHP Code question

for disabeling a textbox or that you could use php to let it check something lets say you have a form

<?php
if($_POST['submit'])
{
$check = "disabled";
}
?>
<form method="post">
<input <? echo $check; ?> type="text"><br>
<input type="submit" name="submit" value="send">
</form>
Pachel is offline   Reply With Quote
Sponsored Links