billybrag Posted July 1, 2004 Posted July 1, 2004 how would i do this, if its possible? "because it'll hurt more"- the greatest film of all time?
Acheron Posted July 1, 2004 Posted July 1, 2004 Multiple ways to do this actually. One was mentioned on the forums in the lastg few days, can't recall where exactly. Another way I'll be posting as part of a contribution in a few days. :)
billybrag Posted July 1, 2004 Author Posted July 1, 2004 i have searched but cant find anything, so can you remember more? edit - - by the way, i see you have worked on the current auctions contrib? you may be able to help me, how would i make it so that it pulls 2 ebay profiles and displays both? cheers "because it'll hurt more"- the greatest film of all time?
Acheron Posted July 1, 2004 Posted July 1, 2004 http://www.oscommerce.com/forums/index.php?showtopic=83300
Acheron Posted July 1, 2004 Posted July 1, 2004 In reference to your auctions question ... well, the quickest way would be to simply create a new page. Another way would be to copy the body and change the variables, then append it in the right place to the existing data so that it would append the table display on the page. The simplest way of all would be to simply combine your user IDs. ;)
billybrag Posted July 1, 2004 Author Posted July 1, 2004 is it possible that you could expand slightly the second idea there, because i have been searching for a solution to this for a long while, and have evn tried emailing the creators direct. can you show me what you mean? im not too hot on php, infatc all that i have learnt is from these forums cheers "because it'll hurt more"- the greatest film of all time?
Acheron Posted July 1, 2004 Posted July 1, 2004 is it possible that you could expand slightly the second idea there, because i have been searching for a solution to this for a long while, and have evn tried emailing the creators direct. can you show me what you mean?im not too hot on php, infatc all that i have learnt is from these forums cheers OK, a quick example ... my file looks like this: // Build the eBay URL [COLOR=red]$URL[/COLOR] = "http://cgi6.ebay.com/ws/eBayISAPI.dll?MfcISAPICommand=ViewListedItems&userid=" . [COLOR=red] EBAY_USERID[/COLOR] . "&since=" . EBAY_ENDED . "&sort=" . EBAY_SORT . "&rows=0"; Now 2 of those values could be re-used as it's easier that way and you likely wouldn't want different sort/display options anyway. You would make the 2nd half of your body like ... // Build the eBay URL [COLOR=red]$URL2[/COLOR] = "http://cgi6.ebay.com/ws/eBayISAPI.dll?MfcISAPICommand=ViewListedItems&userid=" . [COLOR=red] EBAY_USERID2[/COLOR] . "&since=" . EBAY_ENDED . "&sort=" . EBAY_SORT . "&rows=0";
billybrag Posted July 1, 2004 Author Posted July 1, 2004 thanks, atlast i managed to get it sorted :) "because it'll hurt more"- the greatest film of all time?
Recommended Posts
Archived
This topic is now archived and is closed to further replies.