Jump to content

delickate

Members
  • Posts

    193
  • Joined

  • Last visited

    Never

Everything posted by delickate

  1. Hi, I've a web page. in which i'm using two iframes with same code. first one is working fine but second one is not working. can any one guide me. Ifram should create a seperate block of code. then why variables are conflicting... can anyone help me out please? Thanks
  2. hi, i've a website in which a global css is set for all inputs etc... some times i need to use different class or not need to use any class for input or any other element. but global class automatically effect it. is there a way in css to get rid of all global classes??? Please guide....... Thanks
  3. no one knows how to play with image virtually!!!!!!?????????????
  4. Hi guys, is there anyone who has developed or worked for virtual fitting room like fits.me website? if yes, please guide me what is the basic code approach is being used? whether they use lots of images on each measurement or there is some other technology being used on same image? Please guide if anyone know about.......... Looking forward. Best regards
  5. no one news how paypal works!!!!!!!!.........
  6. Hi, is there anyone know how to app preloader on j crousel... Thanks
  7. Thanks for reply... thanks for providing me that code. actuall i just want to know that how status set to 1 when payment is paid... when i can run my query to set the flag 1. or i've to loging my pypal account first and check the payment. then i've to login my website admin and set the flag 1 manually? please guide and help... Thanks
  8. Hi, Thanks for the reply. My HTML Code is as Follow: <form action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="cmd" value="_cart"> <input type="hidden" name="business" value="[email protected]"> <input type="text" name="item_name" value="hat"> <input type="text" name="item_number" value="123"> <input type="text" name="amount" value="15.00"> <input type="text" name="first_name" value="sani"> <input type="text" name="last_name" value="hyne"> <input type="text" name="address1" value="9 Elm Street"> <input type="text" name="address2" value="Apt 5"> <input type="text" name="city" value="Berwyn"> <input type="text" name="state" value="PA"> <input type="text" name="zip" value="19312"> <input type="text" name="night_phone_a" value="610"> <input type="text" name="night_phone_b" value="555"> <input type="text" name="night_phone_c" value="1234"> <input type="text" name="email" value="[email protected]"> <input type="text" name="return" value="return.php?ordid=5"> <input type="image" name="submit" border="0" src="https://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" alt="PayPal - The safer, easier way to pay online"> </form> my php code is as follow: mysql_query("insert into tblOrder(feidls1, feidls1,feidls1,feidls1,feidls1, status) values ($feildvalues1, $feildvalues1, $feildvalues1, $feildvalues1, $feildvalues1, '0')"); my return .php page is if(isset(ordrid)) mysql_query("update tblename set status = '1' where ordid='".$_Request['ordrid']."'"); so please suggest... Thanks
  9. Hi, I'm integrated paypal standard integration on my website. It integrated successfully.. we collect the data on website and send all info to paypal. in database order table. I set the status to 0 which means order is pending. Now i'm confused how it'll be 1? when i'll come to know that client has paid the payment. do i need to set it flag manual in admin panel after check into my paypal account? or do i need to send some parameter on return valraible. if he i'll return to that page then query to set flag 1. Please help me on this. and let me know which one is best method??? Looking forward. Best regards
  10. thanks for reply.. if you name any textbox as array and make it copy... it'll become array of different indexes... and if that select box will return array then it should return array into array.. i know if i change each select box name to make them two diff array then i'll get the required result. but this is not my requirement. My form is dynamic and it require such demand... so please help me on this............. Thanks
  11. Hi, I've a two select box with same name enabled multiple. like this <select name="saniSelect[]" multiple = "multiple"> <option value="a">a</option> <option value="b">b</option> <option value="c">c</option> </select> <select name="saniSelect[]" multiple = "multiple"> <option value="d">d</option> <option value="e">e</option> <option value="f">f</option> </select> Now from select box first i select "a" and "c" and from 2nd select box i just select "f" when i submit the form. and watch the result like this: print_r($_REQUEST['saniSelect']); it should return like this: Array([0] => Array([0]=>a, [3] => c), [0] => Array([3]=>f), ) which is what i want .but it didn't.. it shows like this Array([0] => Array([3]=>a, [3] => c)) why i'm not getting my require result.. it should become array onto an array.. means multidimensional array Please help
  12. no one know!!!!!!!!.................
  13. Hi, Can anyone guide me which one php open source shopping cart is best to manage Wholesale/Reselle?? Thanks
  14. Thanks alot. you are really helpful. Thanks again
  15. thanks for the reply, what is PDO? can u give me an example of that? e.g: if we code for mysql_real_escape_string() like this echo "insert into table(feidlname) values('".mysql_real_escape_string($value) ."')"; how would we do code for PDO? like this echo "insert into table(feidlname) values('".PDO($value) ."')"; please guide thanks
  16. Hi, I'm inserting data into database. which is going fine. but i want to make sure how to insert secure data into database to avoid sql injection. what function should i use to insert secure data into database. can any one guide me please??? Thanks
  17. Hi, Thanks for the reply. I try to google for flash player too. but most of the guys comments that flah player can't read the pdf file.. R u sure there is not any other way in php to secure page??? I also try to find out flash solution... Thanks
  18. Hi, I want that user can only read my article but can't download it. neither with save page as or with view source, even not with selecting text. and copy and paste. is there any solution in php to do that. Please help Thanks
  19. Hi, I just integrate my website with paypal test account. It works fine. now i want that if i pay on paypal website it should return to my website. i use following code to do that <input type="hidden" name="return" value="http://www.miricreation.ae.com/shopping-cart-details.php"> but it didn't working. i also enable auto return url into my test account. but no luck. is there anything need to do for this in code?????????? Please help Thanks
  20. No one knows how to.....................???????????
  21. Hi, You can do like this: echo "<table>"; echo "<tr><td><b>FieldOne</b></td> <td><b>FieldTwo</b></td></tr>"; $qry = mysql_query("select * from tableName"); while($rec = mysql_fetch_assoc($qry)) { echo "<tr><td>".$rec['fieldone']."</td> <td>".$rec['fieldTwo']."</td></tr>"; } echo "<table>"; Hope it'll help you
  22. hi, show your database structure. If you're trying to fetch data from one then its very simple otherwise you've to join tables in query and do it as follow: $mysql = mysql_query("SELECT owner_mnum FROM ".MYSQL_PREFIX."_tickets WHERE active='1'"); while ($t = mysql_fetch_array($mysql)) { ?> <tr> <td align="center"><?php $nm = $t[owner_mnum]; ?></td> <td align="center"><?php echo $t[tnum] ?></td> <td align="center"><?php echo $t[thedate].' at '.$t[thetime] ?></td> </tr> <tr><td align="center" colspan="3"><?php if ($t[paypal_txn]) { ?>PayPal Transaction #<b><?php echo $t[paypal_txn] ?></b><br /><br /><?php } ?><a href="tickets.php?action=+Delete+Ticket+&tnum=<?php echo $t[tnum] ?>">Delete Ticket</a></td></tr> <tr><td colspan="3" height="2" class="divider"></td></tr> <?php } ?> </table> Never uses @ sign. It hides the errors... Hope it'll help you
  23. hi, when you submit the form. it itself return an array. you can use that array to fulfill your requirements. To check that array on form submit, just do the following: print_r($_POST); Hope it'll help you.
  24. do this unset($_session); Hope it'll work for you.
  25. hi, I'm trying to integrate paypal integration. it is integrated successfully and I've checked on my test account too. i want that as user purchase package he should able to download the file. to do that i want to set return variable. as user complete the payment process on paypal , it should auto come back to my website. as he'll be back I'll set his flag to paid and allow him to download file. the problem I'm facing is on my test account. when i paid money. i didn't return to my website. so i don't know to set his flag to true. any one know its best solution??? i want immediate response to client to pay online. Please advise... Thanks
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.