No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
- Interests
- football
11 Posted Topics
HI i am trying to work with a html5 canvas for signature capture i got script and try to get the signature with ajax and php function saveit() { var myDrawing=document.getElementById("newSignature"); var drawingString=myDrawing.ToDataUrl("image/png"); var postData="canvas="+drawingString; var ajax=new XMLHttpRequest(); ajax.open("POST",'saveimage.php',true); ajax.setRequestHeader('Content-Type','canvas/upload'); ajax.onreadystatechange=function() { if(ajax.readyState==4) {alert("image saved"); } ajax.send(postData); } and here … | |
I am trying to collect data from amazon market place web service in Scratchpad i get all the values.I am downloading php client library from mws developer website and try to run the code for display those files into browser POST mws.amazonservices.com /Products/2011-10-01 AWSAccessKeyId=AKIAJP5PIHAAXLU6NLDQ&Action=ListMatchingProducts&MarketplaceId=ATVPDKIKX0DER&Query=shoes&SellerId=A2LZO1DGHI8M8V&SignatureMethod=HmacSHA256&SignatureVersion=2&Timestamp=2015-01-18T06%3A24%3A58Z&Version=2011-10-01 and according to the post we … | |
*I am trying to get amazon product feed from marketplace i have download php client library file,and setup every additional setup like marketplace id merchant id (under the sample folder config folder) i got some error message and solve those problem.Now i get this error "Caught Exception: Could not resolve … | |
HI i am create a website and want to publish my site online so everybody can access this,i am buy a domain name,i want to publish my website from my home computer and homecomputer operating system is windows 2008r2 i want to deploy my website using xampp and i open … | |
is it possible to move one mysql table data to another table after 1 or 2 days like we have 2 table one is tbl1 another one is tbl2 tbl1 contain column uname and performance i want to move uname and performance data in to tbl2 after 2 or 3 … ![]() | |
This is my script when any registed user click on checkbox then he insert tbl1 table and we set a cookie and run events after 36 minute event will run and insert data in to another table called tbl2 my code is <form action="course01.php" method="POST"> <input type="checkbox" name="chk1" value="701" />I … | |
is it possible to run a php script using mysql event if so how to do that i mean syntex thanks in advance. | |
this is a php script for import .sql file in mysql but suddenly it doesn't work what i am doing wrong browser show false messege <?php //ENTER THE RELEVANT INFO BELOW $mysqlDatabaseName ='trigger'; $mysqlUserName ='username'; $mysqlPassword ='mypassword'; $mysqlHostName ='localhost'; $mysqlImportFilename ='event.sql'; $command='mysql -h' .$mysqlHostName .' -u' .$mysqlUserName .' -p' .$mysqlPassword … | |
hi , it's joy i want to learn about error messege in php i mean if we find user already exits on the database then how to display an error messege on same page same page means like displaying another page on the main page like pop up messege.thanks in … | |
hi i am tring to insert one table data to another using checkbox my flow is people check in checkbox and submit checkbox value will be pass in the query and insert data into another table my code is: <form action="form.php" method="post"> <input type="checkbox" name="chk1[]" value="701" /> i am agree … | |
hi in my project i am almost done for deployment but i am afraid about ppl who disabled cookies in there browser, what should i do if they disable cookies how we get there data(i mean user) i am think about if they disable cookies we use session function for … |
The End.