i think the problem in the where you set the default value=0 or value =1, when you are going to click on no , but the default value=1 of the option1 , so i think this is the problem , so don;t set the default value.
2 2008-05-06 06:26
Re: Hello does any one want a link exchange ... i get more then 5000 vpd (8 replies, posted in General discussion)
your link directory is related to sports only?
what is the google page rank of your directory?
when i am click on the movie and tv is not open .......
3 2008-05-06 06:16
Re: about your module (3 replies, posted in General discussion)
Why would there be?
because there are lot of cricket fan are there i am also a big fan for sports cricket , i am also need of that
4 2008-04-30 06:49
Re: Setting up a forum to display a older date (3 replies, posted in General discussion)
You could check the following mod...
Edit Post Date/TimeHope it helps.
very good solutions thanx.
5 2008-04-30 06:37
Re: Getting the original password (4 replies, posted in PunBB 1.2 modifications, plugins and integrations)
no there is no way to get the original password, because in the database the password is store in inscription format, means that the admin cannot access the original password,
6 2008-04-30 06:26
Re: A SQL question (6 replies, posted in General discussion)
in the SQL Data base the maximum length of the field is 255 means if you enter the string whose length is grater then 255 then these type of error are occurred.
7 2008-04-30 06:23
Re: why isn't punbb not popular? (20 replies, posted in General discussion)
punbb is very easy to install and manage, i think will be popular in time ,as compare to other is very easy handle. or manage.
8 2008-04-30 06:14
Re: Date Validations in PHP (3 replies, posted in Programming)
in the first you
$m=?11?;
$d=?31?;
$y=?05?;
If(!checkdate($m,$d,$y)){
echo ?invalid date?;
}else {
echo ?Entry date is correct ?;
}
be less than 1 or greater than 12.
$month = min(12, max(1, intval($month)));
for feb month check
if($day > 28)
$day = ($year % 4 == 0 && ($year % 100 != 0 || $year % 400 == 0)) ? 29 : 28