Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #14.9K
Ranked #4K
~3K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

9 Posted Topics

Member Avatar for neel_1708

number_format function is good one and you can use floatval($var3 floatval fuction is did not show .00 (null) value, but it will show .1 like ....

Member Avatar for Elbert_1
0
425
Member Avatar for nick3592
Member Avatar for backendcode

[CODE]<?php //database connectivity $host="localhost"; // location of my sql on server $user="root"; // Database name $pass=""; // Database name ( By default with no password ) $db_name="admin"; // Database name $db_table="admin_login"; // Table name in database( admin ) $con=mysql_connect($host,$user,$pass) or die("could not connect to database"); $sql=mysql_select_db($db_name,$con); // here the problem, …

Member Avatar for karuppasamy
0
140
Member Avatar for Smudly

[CODE]<?php include_once('../inc/connect.php'); $date = date("Y-m-d"); // not neccessary because we use NOW() to get current dte in mysql $drawquery = mysql_query("SELECT id,credits FROM userstats WHERE `todaysurfed`>=250 AND DATEDIFF(NOW(),`wondaily`) > 30 OR `wondaily`='0000-00-00' ORDER BY rand() LIMIT 3"); while($row = mysql_fetch_array($drawquery)) { $userid = $row['id']; $credits = $row['credits']; $addcredits = 500; …

Member Avatar for karuppasamy
0
99
Member Avatar for rahul8590

hi you have use the filesize() function to get the image size in bytes then you have to use if condition to upload the file if(filesize('noname.gif')<50000) { // upload the image } else{ // decline the image } got it enjoy.....:)

Member Avatar for Froger93
0
166
Member Avatar for adsegzy

hey bee do the following your form is like [code] <form id="form1" name="form1" method="post" action="mailTO.php"> <table width="500" border="0" align="center" cellpadding="5" cellspacing="0"> <tr> <th width="26" scope="col" id="heading4"><div align="center"></div></th> <th width="182" scope="col" id="heading4"><div align="left"> Names</div></th> <th width="262" scope="col" id="heading4"><div align="left"> Email Addresses </div></th> </tr> <tr> <td class="style5"><div align="center">1.</div></td> <td class="style5"><label> <input name="name[]" …

Member Avatar for karuppasamy
0
109
Member Avatar for Member #743490

hi do the following 1. you have to create a select box content like date and category 2. if you select the date in that select box then the result will show like if($_GET['order']==date) { $category = mysql_query("SELECT * FROM content ORDER BY date ASC OR DESC(which order you want …

Member Avatar for karuppasamy
0
117
Member Avatar for niths

hi niths where you have submit the data's at that button add window.close button() like <input type="submit" name="Submit" id="button" value="Submit" onclick="window.close()"/>

Member Avatar for Member #334542
-1
2K
Member Avatar for sfrider0

1) pass all record ids in the check box 2) use java script var recordID= function(){ var a = ""; for(var i=0; i < document.formname.checkboxID.length; i++){ if(document.ks.checkboxID[i].checked == true){ a = a+documentformname.checkboxID[i].value+","; } document.formname.action = "filename.php?a=" + a; } call this function in submit button 3) PHP code if(isset($_REQUEST['a']) != …

Member Avatar for karuppasamy
0
153

The End.