Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~8K People Reached
Favorite Tags
Member Avatar for sandipan.rcciit

hi i used a javascript countdown timer as: [CODE]<form name="counter"><input type="text" size="8" name="d2"></form> <script> <!-- // var min=5 var seconds=0 document.counter.d2.value='5' function display(){ if (seconds<=0){ min-=1 seconds=60 } if (min<=-1){ seconds=0 min+=1 } else seconds-=1 document.counter.d2.value=min+":"+seconds setTimeout("display()",1000) } display() --> </script>[/CODE] for clock ticking purpose. and [CODE]<SCRIPT LANGUAGE="JavaScript"><!-- setTimeout('document.tform.submit()',300000); //--></SCRIPT>[/CODE] …

Member Avatar for farah ashikin
0
1K
Member Avatar for sandipan.rcciit

hi friends, I already have a code that upload image with re size it. [CODE]<form action="<?php echo $_server['php-self']; ?>" method="post" enctype="multipart/form-data" id="something" class="uniForm"> <input name="new_image" id="new_image" size="30" type="file" class="fileUpload" /> <input type="submit" name="submit" value="Submit"><p> </form> <?php if(isset($_POST['submit'])){ if (isset ($_FILES['new_image'])){ $imagename = $_FILES['new_image']['name']; $source = $_FILES['new_image']['tmp_name']; $target = "images/".$imagename; move_uploaded_file($source, …

Member Avatar for diafol
0
880
Member Avatar for sandipan.rcciit

hi, i want to make a program where the csv file directly insert into the mysql database table. i found the code: [CODE]<?php include 'mysql-connect.php'; $rec=0; $handle = fopen ('datafile1.csv', 'r'); while (($data = fgetcsv($handle, 1000, ',', '"')) !== FALSE) { $rec++; if($rec==1) { continue; } else { $query = …

Member Avatar for sujitri
0
297
Member Avatar for sandipan.rcciit

Hi frnds, I found a code that is make autosuggestion text box according to user input. i make some changes on it and it works fine for auto suggestion text box. but now i want to add a button in a side of that text box,when we click on it …

0
60
Member Avatar for sandipan.rcciit

hello frnds, I have a code snippet where auto suggest dropdown will come in basis of text box value entered by the user. [CODE] <?php $response=""; $i=0; $con=mysql_connect("localhost","root","root"); mysql_select_db("autosuggest",$con)or die(mysql_error()); print "<script>var [COLOR="Red"]jarray[/COLOR] = Array();</script>"; $q=mysql_query("select * from suggestion"); $n=mysql_num_rows($q); while($r=mysql_fetch_array($q)) { $response=$r['suggest']; print "<script> j[COLOR="Red"]array[/COLOR][".$i."]='".$response."'</script>"; $i++; } ?>[/CODE] this …

0
75
Member Avatar for sandipan.rcciit

hello friend i have a text file name url.txt contain lots of url, one url in a line. now i want to get the content of each an every page which are open on the basis of those urls, here is my code: [ICODE] using System; using System.IO; using System.Net; …

Member Avatar for rameez jawaid
0
460
Member Avatar for sandipan.rcciit

hi, if any one know that how to convert a [COLOR="Red"]excel file to csv[/COLOR] file with [COLOR="Red"]php [/COLOR]coding????? actually i want to make a site where user upload the data as a [COLOR="Red"]excel file format.[/COLOR] and when they clicked button the [COLOR="Red"]excel file is changing in csv file[/COLOR] first then …

Member Avatar for whois101
0
4K
Member Avatar for sandipan.rcciit

hello frnd, i want to integrate my web page with paypal service for shopping cart. for that purpose i use IPN (paypal notification service). i create a page name ipn.php to catch the paypal post and another page paypal.inc.php to describe all the variable and action to be done with …

Member Avatar for sandipan.rcciit
0
187
Member Avatar for sandipan.rcciit

hi frnd, i have a html form with some text fields and i have a check box that when i click on it the data form 1st text box come to the next one. its working fine when i write the text in text box. but if i use php …

0
72
Member Avatar for sandipan.rcciit

hi, I am creating a script where i have 4 combo box collecting the value from database. and i want if some one select the other option from the combo box the text box is enable. and all 4 combo box have an alternative text box and i want same …

Member Avatar for sandipan.rcciit
0
162
Member Avatar for sandipan.rcciit

hi, i am going to create a pagination in php in basis of retrieving the data from the database. i tried to combine two different query result in same pagination but i don't get the desired result. here is my code:- [CODE] <?php include 'mysql-connect.php'; $qs=$_REQUEST["qs"]; $d=$qs; $a=$d; if (isset($_GET['a'])) …

Member Avatar for kvprajapati
0
99
Member Avatar for sandipan.rcciit

hello, i want to create a program to fetch the xml files data to mysql database. here is my code [CODE] <?php include 'mysql-connect.php'; $m=1; $n=".xml"; while($m<6) { $str=$m.$n; $doc = new DOMDocument(); $doc->load( $str ); $params = $doc->getElementsByTagName('BookData'); // Find BookData $k=0; foreach ($params as $param) //go to each …

0
82
Member Avatar for sandipan.rcciit

hello i want to prevent copy image from website. for that i found a trick. [CODE] <SPAN STYLE="background-image: url(hemcircuit.gif)"><IMG SRC="transparent.gif" WIDTH="195" HEIGHT="190" BORDER="0"></SPAN> [/CODE] where[COLOR="Red"] hemcircuit.gif[/COLOR] is main image and [COLOR="Red"]transparent.gif[/COLOR] is tranparent image file . [COLOR="Red"] WIDTH="195" HEIGHT="190"[/COLOR] is the width and hight of original pic. it is working …

Member Avatar for JugglerDrummer
0
107
Member Avatar for sandipan.rcciit

hi i am developing a website where i am using a pagination code . i want to display the result of the candidate from table[COLOR="Red"] record_result [/COLOR] on the basis of certain time period given by admin. that is my code... [CODE] <?php include 'mysql-connect.php'; // how many rows to …

Member Avatar for dimplemodi
0
127
Member Avatar for sandipan.rcciit

I am creating a code in php to read the content of a file and save it in a php array. this is my code: [CODE] <?php $myFile = "isbn.txt"; $fh = fopen($myFile, 'r'); $i=0; $ans=array(); while(!feof($fh)) { $theData = fgets($fh); $url='https://isbndb.com/api/books.xml?access_key=RPGYD5PC&index1=isbn&value1='; $url1=$url.$theData; //echo $url1; $ans[$i]=$url1; $i++; } ?> [/CODE] …

Member Avatar for sandipan.rcciit
0
220
Member Avatar for sandipan.rcciit

hi i am trying to collect the database of books from the devloper area of isbndb.com. this site provide us a passkey with the help of that we can collect the xml data from database depending upon criterias. .[url]http://isbndb.com/api/books.xml?access_key=6XEB6RTL&index1=publisher_id&value1=oreilly[/url] this link collect the xml data of books publisher of oreilly. …

Member Avatar for kvprajapati
0
178