in reply to Re: ikobo.pl return to script
in thread ikobo.pl return to script

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re^3: ikobo.pl return to script
by Irrelevant (Sexton) on Feb 04, 2005 at 22:23 UTC
    Nobody's going to filter through more than 300 lines of someone else's code for free, with or without <readmore> tags. We might be more able (and inclined) to help you if you narrow the problem down to a specific block of code. The solution may even become apparent during that process, and then you won't need our help anyway.
      I posted just the follwoing code before and was asked to post more code....     print " - <A HREF=$ENV{'SCRIPT_NAME'}\?action=paypal_login\&ALIAS=$form{'ALIAS'}\&balance=$balance> PayPal </A>" if ($config{'allowpaypal'} != 0); print "<P><A HREF=$ENV{'SCRIPT_NAME'}?action=buynow&category=&item=$form{'item'}>Buy Now</A></FONT>" if (($buyit ne "") & ($bid < $buyit)); The 2nd line of code works without the 1st line added...when i add the 2nd line of code, I get RESP=OK and don't know how to return to the script and process the 2nd line of code after I get RESP=OK... Can anyone help?
Re^3: ikobo.pl return to script
by Grygonos (Chaplain) on Feb 04, 2005 at 21:56 UTC

    He has a point. You show little to no effort. You plop the code down and say.. figure out the structure.. and tell me what to fix. People on this site will help you if you put forth honest effort and bring us examples of what you've tried and show that you have attempted to fix this yourself. If you want me to fix it for you without you putting forth any effort, you can paypal me some money and I'll fix it, but if you want the help of some of the best perl programmers on the planet for free (not including myself in the best by any means), then they require that you at least try to DIY.

      If you notice, In my 1st thread, I included a description of some of the things I have tried... I have exhausted every idea I can come up with and hav3e included examples i.e. test2.pl (above). I am not trying to get u to do my work 4 me, I am trying to learn PERL and just need to plug variables from print "<P><A HREF=$ENV{'SCRIPT_NAME'}?action=buynow&category=&item=$form{'item'}>Buy Now</A></FONT>" if (($buyit ne "") & ($bid < $buyit));...Maybe I need to write the variables to a test file from: print "<P><A HREF=$ENV{'SCRIPT_NAME'}?action=buynow&category=&item=$form{'item'}>Buy Now</A></FONT>" if (($buyit ne "") & ($bid < $buyit));...prior to executing: print " - <A HREF=$ENV{'SCRIPT_NAME'}\?action=paypal_login\&ALIAS=$form{'ALIAS'}\&balance=$balance> PayPal </A>" if ($config{'allowpaypal'} != 0);...then, after the ikobo.pl returns:
      RESP=OK, I can read the text file I just made, and plug that info back + into: print "<P><A HREF=$ENV{'SCRIPT_NAME'}?action=buynow&category=&item=$fo +rm{'item'}>Buy Now</A></FONT>" if (($buyit ne "") & ($bid < $buyit));
      ...after ikobo returns RESP=OK? Any helpful comments?