SitePoint Sponsor |
|
User Tag List
Results 1 to 5 of 5
Thread: Help in button disable
-
Mar 5, 2007, 04:05 #1
- Join Date
- Dec 2006
- Location
- /dev/swat
- Posts
- 619
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Help in button disable
PHP Code:<?php
$con = mysql_connect("localhost","root","adil");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("db", $con);
$query = "SELECT * FROM accdtl where icnumber='123456-00-0012'";
$result = mysql_query($query) or die(mysql_error());
$ic=$row->icnumber;
if ($ic == '123456-00-0012') {
$disabled = "disabled";
}
else{
$disabled = "";
}
echo "<table class='text' align=Center CELLSPACING='0'BORDERCOLOR='#007FFF' BGCOLOR='cornsilk' border='1'>
<tr><th colspan=12><Font face='Verdana'size='3'>Official Receipt</th></Font>
<tr>
<th><Font size='1'>Customer IC</th></Font>
<th><Font size='1'>Acc Code</th></Font>
<th><Font size='1'>Active</th></Font>
<th><Font size='1'>Date</th></Font>
</tr></tr>";while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo"<td>" . $row['icnumber'] . "</td></font>";
echo "<td>" . $row['acccode'] . "</td></font>";
echo "<td>" . $row['active'] . "</td></font>";
echo "<td>". $row['date'] . "</td></font>";
echo "</tr>";
}
echo "</table>";mysql_close($con);
echo '
<form>
<input type="button" onClick="window.print()" value="Selection by Set" '.$disabled.' >
</form>
';
?>
I try the php but not working, i am not good in javascript.
How to use java for this to work.
Any help will be appreciated.
Thanks.
-
Mar 5, 2007, 10:32 #2
- Join Date
- Nov 2004
- Location
- Nelson BC
- Posts
- 2,310
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Set $disabled="" outside the while loop.
Put this part INSIDE the loop:
Code:$ic=$row->icnumber; if ($ic == '123456-00-0012') { $disabled = "disabled"; }
-
Mar 5, 2007, 21:47 #3
- Join Date
- Dec 2006
- Location
- /dev/swat
- Posts
- 619
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
I try this changes, the problem is same,
button is enabled
this simple coding driving me crazy.
I dont know where to correct it.
Any suggestions.
Thanks for reply.
-
Mar 6, 2007, 00:28 #4
- Join Date
- Oct 2006
- Location
- Kathmandu, Nepal
- Posts
- 4,013
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Try to echo the value stored in the variabl $disabled whether this it stores something or not. If it is storing as it should, then try out echoing like this:
PHP Code:echo "<form>
<input type=\"button\" onClick=\"window.print();\" value=\"Selection by Set\" " . $disabled . " />
</form>";
Mistakes are proof that you are trying.....
------------------------------------------------------------------------
PSD to HTML - SlicingArt.com | Personal Blog | ZCE - PHP 5
-
Mar 6, 2007, 00:55 #5
- Join Date
- Dec 2006
- Location
- /dev/swat
- Posts
- 619
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Thanks rajug for reply,
See my post in php forum for details.
Bookmarks