Author |
Message |
gch
Hangin' Around

Joined: Feb 22, 2005
Posts: 25
|
Posted:
Mon Jul 11, 2005 1:38 am |
|
Hey all
Over the last week i have been trying to get hold of Nuke Amazon 2.7.2 from the official site. When you register on the site you dont recieve an email to confim the account so you cant download anything. I have emailed him loads to tell him about it and no reply and also looked over the net for hours but no joy either. Does anyone have a copy of this they can send me as its desperate i get it now. If anyone does your a life saver!
Thanks
GCH
webmaster@guyscliffehouse.co.uk <---- Can send it here if anyone has it  |
|
|
|
 |
hitwalker
Sells PC To Pay For Divorce

Joined:
Posts: 5661
|
Posted:
Mon Jul 11, 2005 4:34 am |
|
|
|
 |
gch

|
Posted:
Mon Jul 11, 2005 12:20 pm |
|
Hello HitWalker
Thankyou very much for sending me the NukeAmazon module i owe you a beer one day
Kindest Regards
gch |
|
|
|
 |
hitwalker

|
Posted:
Mon Jul 11, 2005 12:28 pm |
|
|
|
 |
MaSePoes
New Member


Joined: Apr 11, 2005
Posts: 21
|
Posted:
Wed Jul 13, 2005 1:42 am |
|
hey Hitwalker, I'm impressed with your site. Cool site! |
Last edited by MaSePoes on Wed Jul 13, 2005 4:35 am; edited 1 time in total |
|
|
 |
hitwalker

|
Posted:
Wed Jul 13, 2005 3:55 am |
|
thank you...  |
Last edited by hitwalker on Wed Jul 13, 2005 4:41 am; edited 1 time in total |
|
|
 |
MaSePoes

|
Posted:
Wed Jul 13, 2005 4:04 am |
|
out of this world and really cool... |
|
|
|
 |
hitwalker

|
Posted:
Wed Jul 13, 2005 4:06 am |
|
|
|
 |
dcasmr
Worker


Joined: Feb 06, 2004
Posts: 147
|
Posted:
Wed Aug 10, 2005 6:31 am |
|
I need to modify NukeAmazon in order to display cultural items (movies, books) from a site other than amazon.com. The site is actually http://www.fnac.com. I want to display among many others a video named SIA from Burkina Faso.
how to modify the block to display items from that store instead of amazon?
Thanks,
dcasmr
Attached are the codes for block-amazon:
Some header items removed from scrolling block ...
$imgs = dir('images/amazon');
while ($file = $imgs->read()) {
if (eregi("gif", $file) || eregi("jpg", $file)) {
$imglist .= "$file ";
}
}
closedir($imgs->handle);
$imglist = explode(" ", $imglist);
sort($imglist);
for ($i=0; $i < sizeof($imglist); $i++) {
if($imglist[$i]!="") {
$image=$imglist[$i];
$asin = explode(".", $image);
$content .= "<br><center><a href=\"http://www.amazon.com/exec/obidos/ASIN/$asin[0]/$amazon_id\" target=\"_blank\">";
$content .= "<img src=\"images/amazon/$image\" border=\"0\" alt=\"\"><br><br></center>";
}
}[/code]
Thanks |
|
|
|
 |
hitwalker

|
Posted:
Wed Aug 10, 2005 6:42 am |
|
|
|
 |
|