Jump to content


Corporate Sponsors


Latest News: (loading..)

- - - - -

Links Manager For OSC v0.20 released


125 replies to this topic

#81 cma01

  • Community Member
  • 19 posts
  • Real Name:Carla

Posted 17 August 2003, 23:37

Wes,

I think the file you are looking for is

/catalog/includes/languages/english/exchange_links_submit_process.php

Now for my question,

I think I have this installed correctly, the only problem I have found so far is in the Admin panel, Exchange Links => Links, rather than showing "Displaying x to x (of x customers)," it shows "TEXT_DISPLAY_NUMBER_OF_RECS"

I'm using 2.2 MS2 with Werner's modifications and changing tep_array_merge () to array_merge()

Carla

#82 wcrystal

  • Community Member
  • 32 posts
  • Real Name:Wes Crystal
  • Location:Firestone, Colorado

Posted 18 August 2003, 00:42

Hello Carla,

Darn if that wasn't my next question. I have the same problem.

It really doesnt effect anything. It is just annoying. I saw another post with the same question but there was no answer.

Sorry. I wish I knew the answer. If I find out I will let you know.
Wes Crystal

AKA
Intrinsically Dazed And Confused!

#83 wcrystal

  • Community Member
  • 32 posts
  • Real Name:Wes Crystal
  • Location:Firestone, Colorado

Posted 18 August 2003, 03:57

Hello all,

Congratulations on one fantastic contrib! This is just what I have been looking for!

I am having a slight problem though. I am using osc milestone 2.2 I got everything working just fine except the mailing part. I go to Admin=>Exchange Links=>Links and then into Edit. Down at the bottom there is a box that says "Send own link data". Correct me if Im wrong but by checking that box shouldnt it send out an email with your site info to the perspective user. That is to say the site that is going to link to you?

When I check that box nothing seems to happen.

Now if I delete the link and re-add it then an e-mail is sent out but it appears the email is comming from X-Link Mailingliste. How do I get my site info into that e-mail. Below is a sample of the e-mail:

Your Link Information has been stored in our database, but is
not yet activated. Please add a reciprocal link to your site
with the following content:
-------------------------------------------------------------

Titel der Seite: The Name of Your Shop goes here
<eot>

Website URL: http://www.yourshop.com/catalog
<eot>

Beschreibung: A detailed description of your shop, like you
wish it should appear at the link page.
<eot>

Name des Betreibers: Your name
<eot>

URL der Linkseite: http://www.yourshop.com/catalog/exchange_links.php

<eot>

Email Adresse: you@yourshop.com
<eot>

-------------------------------------------------------------
Thank you very much for your effort and take part in the
Link-Exchange Program
Please visit:
http://shop.laserpointer4u.de/catalog/link_mail.php



---------------

I have searched every file trying to find where this information is getting inserted into the email so I can edit it.
Any help in this matter would be greatly appreciated. Thanks.
Wes Crystal

AKA
Intrinsically Dazed And Confused!

#84 resoman

  • Community Member
  • 69 posts
  • Real Name:jesse
  • Location:Minneapolis, MN

Posted 25 August 2003, 11:19

I had the same problem, seems there is a function missing somewhere.

TEXT_DISPLAY_NUMBER_OF_RECS

I just added to admin/includes/languages/english.php

Quote

define('TEXT_DISPLAY_NUMBER_OF_RECS', 'Number of records');

It doesnt get the record amount, but it looks a little better lol

Any real fix for this?
Jesse Rooney

#85 resoman

  • Community Member
  • 69 posts
  • Real Name:jesse
  • Location:Minneapolis, MN

Posted 25 August 2003, 11:24

Basically, on line 459 of exchange_links_links.php it calls to get the number of records

Quote

<td class="smallText" valign="top"><?php echo $links_split->display_count($links_query_numrows, MAX_DISPLAY_SEARCH_RESULTS, $HTTP_GET_VARS['page'], TEXT_DISPLAY_NUMBER_OF_RECS); ?></td>

code guru's would know what to do, its a feature I dont care to use, but im curious now
Jesse Rooney

#86 resoman

  • Community Member
  • 69 posts
  • Real Name:jesse
  • Location:Minneapolis, MN

Posted 25 August 2003, 11:36

ok, here is a fix.

It will say 'Displaying 1 to 1 (of 1 customers)'

go to exchange_links_links.php and modify line 459 (or so) to read:

Quote

<td class="smallText" valign="top"><?php echo $links_split->display_count($links_query_numrows, MAX_DISPLAY_SEARCH_RESULTS, $HTTP_GET_VARS['page'], TEXT_DISPLAY_NUMBER_OF_CUSTOMERS); ?></td>

Basically replace:
TEXT_DISPLAY_NUMBER_OF_RECS
with:
TEXT_DISPLAY_NUMBER_OF_CUSTOMERS

says customers rather than records, but it works!
Jesse Rooney

#87 baresinsations

  • Community Member
  • 361 posts
  • Real Name:Marie
  • Location:Ohio, USA

Posted 25 August 2003, 14:45

hey thanks it works :)

#88 scottymcloo

  • Community Member
  • 137 posts
  • Real Name:Graeme Conkie
  • Location:Ireland

Posted 26 August 2003, 23:12

Hi

To fix the bug where the link field is filled in when the poll is on the left hand side do the following:

In /includes/boxes/polls.php find the following
 	 $url = tep_href_link('pollbooth.php', 'op=results&pollid='.$pollid);

  $content =  "<input type="hidden" name="pollid" value="".$pollid."">n";

 	 $content .=  "<input type="hidden" name="forwarder" value="".$url."">n";

        $content .= "<tr class="polltitle"><td colspan="2">". $poll_details['polltitle'] . "</td></tr>";

and change it to

 	 $url2 = tep_href_link('pollbooth.php', 'op=results&pollid='.$pollid);

  $content =  "<input type="hidden" name="pollid" value="".$pollid."">n";

 	 $content .=  "<input type="hidden" name="forwarder" value="".$url2."">n";

        $content .= "<tr class="polltitle"><td colspan="2">". $poll_details['polltitle'] . "</td></tr>";

You can now have your poll on the left hand side without affecting the links script.

#89 erisen

  • Community Member
  • 61 posts
  • Real Name:Mehmet Erisen
  • Location:California - USA

Posted 27 August 2003, 02:41

Quote

On the contributions page, I couldn't get Werner's upload working, but I did get the original (plus the small update you posted) to work on MS2 by changing any  tep_array_merge()  function calls to array_merge()  calls.  Everything else seemed to be ok, as far as I can tell.

You can find two calls to tep_array_merge ... both in the files in the admin folder.  I think it's exchange_links_categories.php and exchange_links_links.php, if I remember right.

I like having the links ability here; some other ideas to add to this might be with the submission process; add into the admin panel some configuration options, such as where you want the links sent to, etc.  Just some config options in general would be kinda useful.

It looks good though, so keep up your great work.  It's complicated trying to dissect other people's code, like osC, with no comments!  Ahh!

Thanks for the contribution, and thanks for this tip. Thnanks ;)
GALATASARAY RULES!
ultrAslan - ultrAslan - ultrAslan

#90 erisen

  • Community Member
  • 61 posts
  • Real Name:Mehmet Erisen
  • Location:California - USA

Posted 27 August 2003, 06:28

Hello VJ,
Thanks again for this great piece of code.
One question about your instructions: is there a particular reason why you want us to place the code throughout the documents (for example 3 places you specify for the english.php). Can we just append all modifications at the end of the file?
Thanks,
mehmet.
GALATASARAY RULES!
ultrAslan - ultrAslan - ultrAslan

#91 emetani

  • Community Member
  • 48 posts
  • Real Name:emad

Posted 27 August 2003, 09:46

Below Q is been posted before , but I could not see any answer , can somebody help ??

Customer side:
After submitting a link.
The exchange_links_submit_success.php 'continue' button based on
<a href="' . $origin_href . '">
sends the user to the /catalog directory instead of /catalog/default.php

Although the continue button is working in other sections .???

#92 mreveready

  • Community Member
  • 29 posts
  • Real Name:Thomas Law
  • Location:UK

Posted 30 August 2003, 10:16

Please see the following post.
It details the exactl the same issue you have and contains a potential resolution.

:D
The pleasure has been all mine.

#93 mreveready

  • Community Member
  • 29 posts
  • Real Name:Thomas Law
  • Location:UK

Posted 30 August 2003, 10:17

This would help too! :wink:

http://forums.oscommerce.com/viewtopic.php...er=asc&start=10
The pleasure has been all mine.

#94 LeeH

  • Community Member
  • 121 posts
  • Real Name:Lee Harrison

Posted 05 September 2003, 21:05

Hi,

I would like to add links via the Admin interface, enable them, then send the potential link partner an email letting them know I've added their link and request a reciprocal link with my info included. How would I accomplish this? I still want to keep the original code intact for instances when unsolicited link partners request a link....but I also want to be proactive, especially since many sites want to see THEIR link online before their add YOURS.

A simple email form, separate from the update and insert function would be desirable, along with a new field to record the date of the link request.

Anybody know how to do this?

Thanks

Lee

#95 cindyd

  • Community Member
  • 74 posts
  • Real Name:cindy d

Posted 15 September 2003, 04:23

I installed this on OS MS2.2, and I can't get any links or categories to show up on the Links page, as you can see here:

http://www.elegantdepressionglass.com/test...hange_links.php

The admin section works, except for that line that say this:TEXT_DISPLAY_NUMBER_OF_RECS

The other problem I noticed when I try to submit a link from the links page the "continue" button towards the end doesn't go anywhere. It keeps me on the last page.

I have obviously misssed something in getting a catgeory and link to show up. I've gone through the install twice and can't find the problem. I am trying this on my test site before putting it in the live store. Any help is appreciated.

Edited by cindyd, 15 September 2003, 04:26.


#96 cindyd

  • Community Member
  • 74 posts
  • Real Name:cindy d

Posted 15 September 2003, 04:52

It never fails, the minute I post on this board, I find my problem.

#97 inquisitivemind

  • Community Member
  • 203 posts
  • Real Name:Edwin
  • Location:Australia, Melbourne

Posted 16 September 2003, 06:22

would it be bad to start a list of members with this contribution who would like to swap links? Maybe if its not appropriate here it could be done on my forums.

#98 inquisitivemind

  • Community Member
  • 203 posts
  • Real Name:Edwin
  • Location:Australia, Melbourne

Posted 16 September 2003, 06:34

sorry i meant here.

#99 ashutoshmittal

  • Community Member
  • 1 posts
  • Real Name:Ashutosh Mittal

Posted 17 September 2003, 14:12

cindyd, on Sep 15 2003, 04:23 AM, said:

I installed this on OS MS2.2, and I can't get any links or categories to show up on the Links page, as you can see here:

http://www.elegantdepressionglass.com/test...hange_links.php

The admin section works, except for that line that say this:TEXT_DISPLAY_NUMBER_OF_RECS

The other problem I noticed when I try to submit a link from the links page the "continue" button towards the end doesn't go anywhere.  It keeps me on the last page.

I have obviously misssed something in getting a catgeory and link to show up.  I've gone through the install twice and can't find the problem.  I am trying this on my test site before putting it in the live store.  Any help is appreciated.
I installed this on OS MS2.2, and I can't get any links or categories to show up on the Links page, as you can see here:

http://www.igotresidual.com/shop/catalog/exchange_links.php

The admin section works, except for that line that say this:TEXT_DISPLAY_NUMBER_OF_RECS

I have obviously misssed something in getting a catgeory and link to show up. I've gone through the install twice and can't find the problem. Any help is appreciated.

#100 asiabound

  • Community Member
  • 109 posts
  • Real Name:Jerome Hawkins
  • Gender:Male

Posted 20 September 2003, 23:08

i noticed that the exchange_links_submit.php when switch languages that the german language had selections for a client to copy the link code and paste on their site. i edited the file and added the following code so that the when a client uses thier native lanaguage they would be able to see. i have added for the english, spanish, french language.

  <!-- Begin own link info -->
<?php 
if ($languages_id == 1){
	?>
	&nbsp;<BR><FORM NAME="BANNER">
<TABLE ALIGN="CENTER" WIDTH="100%" BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR>
	<TD ALIGN="CENTER" class="infoBoxHeading">Please, copy one of the following codes and add to your html page:</TD>
</TR>
<TR>
	<TD ALIGN="CENTER" class="infoBoxContent"><img src="http://shop.laserpointer4u.de/catalog/affiliate_show_banner.php?affiliate_banner_id=10" border="0" alt="Pro Laser Pointer"><br> 
<TEXTAREA NAME="" ROWS="5" COLS="80" READONLY><!-- Begin partner link Pro Laser Pointer --> 
<a href="http://shop.laserpointer4u.de/catalog/default.php" target="_blank"><img src="http://shop.laserpointer4u.de/catalog/affiliate_show_banner.php?affiliate_banner_id=10" border="0" alt="Pro Laser Pointer"></a>
<!-- End partner link Pro Laser Pointer --> 
</TEXTAREA></TD>
</TR>
<TR>
	<TD ALIGN="CENTER" class="infoBoxContent"><img src="http://shop.laserpointer4u.de/catalog/affiliate_show_banner.php?affiliate_banner_id=8" border="0" alt="Pro Laser Pointer">
<br> 
<TEXTAREA NAME="" ROWS="5" COLS="80" READONLY><!-- Begin partner link Pro Laser Pointer--> 
<a href="http://shop.laserpointer4u.de/catalog/default.php" target="_blank"><img src="http://shop.laserpointer4u.de/catalog/affiliate_show_banner.php?affiliate_banner_id=8" border="0" alt="Pro Laser Pointer"></a>
<!-- End partner link Pro Laser Pointer --> 
</TEXTAREA></TD>
</TR>
<TR>
	<TD ALIGN="CENTER" class="infoBoxContent"><img src="http://shop.laserpointer4u.de/catalog/affiliate_show_banner.php?affiliate_banner_id=7" border="0" alt="Pro Laser Pointer"><br> 
<TEXTAREA NAME="" ROWS="5" COLS="80" READONLY><!-- Begin partner link Pro Laser Pointer --> 
<a href="http://shop.laserpointer4u.de/catalog/default.php?&affiliate_banner_id=7" target="_blank"><img src="http://shop.laserpointer4u.de/catalog/affiliate_show_banner.php?affiliate_banner_id=7" border="0" alt="Pro Laser Pointer"></a>
<!-- End partner link Pro Laser Pointer --> 
</TEXTAREA></TD>
</TR>

<TR>
	<TD ALIGN="CENTER" class="infoBoxContent"><U><B>Textlink</B></U><br> 
<BLOCKQUOTE>Green and red laser pointers for presentation and industry. We also offer better visible 635nm laser pointer. Quick delivery - worldwide dispatch!</BLOCKQUOTE>
<TEXTAREA NAME="" ROWS="5" COLS="80" READONLY><!-- Begin partner link Pro Laser Pointer --> 
<TABLE Align="CENTER">
<TR>
	<TD>
<a href="http://shop.laserpointer4u.de/catalog/default.php" target="_blank">Green and red laser pointers for presentation and industry. We also offer better visible 635nm laser pointer. Quick delivery - worldwide dispatch!</a></TD>
</TR>
</TABLE>
<!-- End partner link Pro Laser Pointer --> 
</TEXTAREA></TD>
</TR>


</TABLE>
</FORM>
<?php
}
?>
<?php 
if ($languages_id == 2){
	?>
	&nbsp;<BR><FORM NAME="BANNER">
<TABLE ALIGN="CENTER" WIDTH="100%" BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR>
	<TD ALIGN="CENTER" class="infoBoxHeading">Bitte tragen Sie auf Ihrer Link-Seite einen der folgenden Codes ein:</TD>
</TR>
<TR>
	<TD ALIGN="CENTER" class="infoBoxContent"><img src="http://shop.laserpointer4u.de/catalog/affiliate_show_banner.php?affiliate_banner_id=10" border="0" alt="Profi Laser Pointer"><br> 
<TEXTAREA NAME="" ROWS="5" COLS="80" READONLY><!-- Begin partner link Profi Laser Pointer --> 
<a href="http://shop.laserpointer4u.de/catalog/default.php" target="_blank"><img src="http://shop.laserpointer4u.de/catalog/affiliate_show_banner.php?affiliate_banner_id=10" border="0" alt="Profi Laser Pointer"></a>
<!-- End partner link Profi Laser Pointer --> 
</TEXTAREA></TD>
</TR>
<TR>
	<TD ALIGN="CENTER" class="infoBoxContent"><img src="http://shop.laserpointer4u.de/catalog/affiliate_show_banner.php?affiliate_banner_id=8" border="0" alt="Profi Laser Pointer">
<br> 
<TEXTAREA NAME="" ROWS="5" COLS="80" READONLY><!-- Begin partner link Profi Laser Pointer --> 
<a href="http://shop.laserpointer4u.de/catalog/default.php" target="_blank"><img src="http://shop.laserpointer4u.de/catalog/affiliate_show_banner.php?affiliate_banner_id=8" border="0" alt="Profi Laser Pointer"></a>
<!-- End partner link Profi Laser Pointer --> 
</TEXTAREA></TD>
</TR>
<TR>
	<TD ALIGN="CENTER" class="infoBoxContent"><img src="http://shop.laserpointer4u.de/catalog/affiliate_show_banner.php?affiliate_banner_id=7" border="0" alt="Profi Laser Pointer"><br> 
<TEXTAREA NAME="" ROWS="5" COLS="80" READONLY><!-- Begin partner link Profi Laser Pointer --> 
<a href="http://shop.laserpointer4u.de/catalog/default.php?&affiliate_banner_id=7" target="_blank"><img src="http://shop.laserpointer4u.de/catalog/affiliate_show_banner.php?affiliate_banner_id=7" border="0" alt="Profi Laser Pointer"></a>
<!-- End partner link Profi Laser Pointer --> 
</TEXTAREA></TD>
</TR>

<TR>
	<TD ALIGN="CENTER" class="infoBoxContent"><U><B>Textlink</B></U><br> 
<BLOCKQUOTE>
Grüne und rote Laserpointer für Präsentation und Industrie. Wir bieten auch die besser sichtbaren 635nm Laserpointer an. Schnelle Lieferung - Weltweiter Versand!</BLOCKQUOTE>
<TEXTAREA NAME="" ROWS="5" COLS="80" READONLY><!-- Begin partner link Profi Laser Pointer --> 
<TABLE Align="CENTER">
<TR>
	<TD><a href="http://shop.laserpointer4u.de/catalog/default.php" target="_blank">Grüne und rote Laserpointer für Präsentation und Industrie. Wir bieten auch die besser sichtbaren 635nm Laserpointer an. Schnelle Lieferung - Weltweiter Versand!</a></TD>
</TR>
</TABLE>
<!-- End partner link Profi Laser Pointer --> 
</TEXTAREA></TD>
</TR>


</TABLE>
</FORM>
<?php
}
?>
<?php 
if ($languages_id == 3){
	?>
	&nbsp;<BR><FORM NAME="BANNER">
<TABLE ALIGN="CENTER" WIDTH="100%" BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR>
	<TD ALIGN="CENTER" class="infoBoxHeading">Usted se coloca por favor a uno de los códigos siguientes en su lado del acoplamiento:</TD>
</TR>
<TR>
	<TD ALIGN="CENTER" class="infoBoxContent"><img src="http://shop.laserpointer4u.de/catalog/affiliate_show_banner.php?affiliate_banner_id=10" border="0" alt="Indicador profesional del laser"><br> 
<TEXTAREA NAME="" ROWS="5" COLS="80" READONLY><!-- Begin partner link Indicador profesional del laser --> 
<a href="http://shop.laserpointer4u.de/catalog/default.php" target="_blank"><img src="http://shop.laserpointer4u.de/catalog/affiliate_show_banner.php?affiliate_banner_id=10" border="0" alt="Indicador profesional del laser"></a>
<!-- End partner link Indicador profesional del laser --> 
</TEXTAREA></TD>
</TR>
<TR>
	<TD ALIGN="CENTER" class="infoBoxContent"><img src="http://shop.laserpointer4u.de/catalog/affiliate_show_banner.php?affiliate_banner_id=8" border="0" alt="Indicador profesional del laser">
<br> 
<TEXTAREA NAME="" ROWS="5" COLS="80" READONLY><!-- Begin partner link Indicador profesional del laser --> 
<a href="http://shop.laserpointer4u.de/catalog/default.php" target="_blank"><img src="http://shop.laserpointer4u.de/catalog/affiliate_show_banner.php?affiliate_banner_id=8" border="0" alt="Indicador profesional del laser"></a>
<!-- End partner link Indicador profesional del laser --> 
</TEXTAREA></TD>
</TR>
<TR>
	<TD ALIGN="CENTER" class="infoBoxContent"><img src="http://shop.laserpointer4u.de/catalog/affiliate_show_banner.php?affiliate_banner_id=7" border="0" alt="Indicador profesional del laser"><br> 
<TEXTAREA NAME="" ROWS="5" COLS="80" READONLY><!-- Begin partner link Indicador profesional del laser --> 
<a href="http://shop.laserpointer4u.de/catalog/default.php?&affiliate_banner_id=7" target="_blank"><img src="http://shop.laserpointer4u.de/catalog/affiliate_show_banner.php?affiliate_banner_id=7" border="0" alt="Indicador profesional del laser"></a>
<!-- End partner link Indicador profesional del laser--> 
</TEXTAREA></TD>
</TR>

<TR>
	<TD ALIGN="CENTER" class="infoBoxContent"><U><B>Textlink</B></U><br> 
<BLOCKQUOTE>Los indicadores verdes y rojos del laser para la presentación y la industria. Ofrecemos también los 635nm visibles mejores a los indicadores del laser. ¡Fuente de los broches de presión - envío mundial!</BLOCKQUOTE>
<TEXTAREA NAME="" ROWS="5" COLS="80" READONLY><!-- Begin partner link Indicador profesional del laser --> 
<TABLE Align="CENTER">
<TR>
	<TD><a href="http://shop.laserpointer4u.de/catalog/default.php" target="_blank">Los indicadores verdes y rojos del laser para la presentación y la industria. Ofrecemos también los 635nm visibles mejores a los indicadores del laser. ¡Fuente de los broches de presión - envío mundial!</a></TD>
</TR>
</TABLE>
<!-- End partner link Indicador profesional del laser --> 
</TEXTAREA></TD>
</TR>


</TABLE>
</FORM>
<?php
}
?>
<?php 
if ($languages_id == 4){
	?>
	&nbsp;<BR><FORM NAME="BANNER">
<TABLE ALIGN="CENTER" WIDTH="100%" BORDER="0" CELLPADDING="2" CELLSPACING="0">
<TR>
	<TD ALIGN="CENTER" class="infoBoxHeading">Veuillez enregistrer sur votre côté de lien des des codes suivants:</TD>
</TR>
<TR>
	<TD ALIGN="CENTER" class="infoBoxContent"><img src="http://shop.laserpointer4u.de/catalog/affiliate_show_banner.php?affiliate_banner_id=10" border="0" alt="Professionnel laser pointeur"><br> 
<TEXTAREA NAME="" ROWS="5" COLS="80" READONLY><!-- Begin partner link Professionnel laser pointeur --> 
<a href="http://shop.laserpointer4u.de/catalog/default.php" target="_blank"><img src="http://shop.laserpointer4u.de/catalog/affiliate_show_banner.php?affiliate_banner_id=10" border="0" alt="Professionnel laser pointeur"></a>
<!-- End partner link Professionnel laser pointeur--> 
</TEXTAREA></TD>
</TR>
<TR>
	<TD ALIGN="CENTER" class="infoBoxContent"><img src="http://shop.laserpointer4u.de/catalog/affiliate_show_banner.php?affiliate_banner_id=8" border="0" alt="Professionnel laser pointeur">
<br> 
<TEXTAREA NAME="" ROWS="5" COLS="80" READONLY><!-- Begin partner link Professionnel laser pointeur --> 
<a href="http://shop.laserpointer4u.de/catalog/default.php" target="_blank"><img src="http://shop.laserpointer4u.de/catalog/affiliate_show_banner.php?affiliate_banner_id=8" border="0" alt="Professionnel laser pointeur"></a>
<!-- End partner link Professionnel laser pointeur --> 
</TEXTAREA></TD>
</TR>
<TR>
	<TD ALIGN="CENTER" class="infoBoxContent"><img src="http://shop.laserpointer4u.de/catalog/affiliate_show_banner.php?affiliate_banner_id=7" border="0" alt="Professionnel laser pointeur"><br> 
<TEXTAREA NAME="" ROWS="5" COLS="80" READONLY><!-- Begin partner link Professionnel laser pointeur --> 
<a href="http://shop.laserpointer4u.de/catalog/default.php?&affiliate_banner_id=7" target="_blank"><img src="http://shop.laserpointer4u.de/catalog/affiliate_show_banner.php?affiliate_banner_id=7" border="0" alt="Professionnel laser pointeur"></a>
<!-- End partner link Professionnel laser pointeur --> 
</TEXTAREA></TD>
</TR>

<TR>
	<TD ALIGN="CENTER" class="infoBoxContent"><U><B>Textlink</B></U><br> 
<BLOCKQUOTE>
Pointeurs de laser verts et rouges pour présentation et l'industrie. Nous offrons aussi le 635nm mieux visible à des pointeurs de laser. Livraison rapide - expédition mondiale!</BLOCKQUOTE>
<TEXTAREA NAME="" ROWS="5" COLS="80" READONLY><!-- Begin partner link Professionnel laser pointeur --> 
<TABLE Align="CENTER">
<TR>
	<TD><a href="http://shop.laserpointer4u.de/catalog/default.php" target="_blank">Pointeurs de laser verts et rouges pour présentation et l'industrie. Nous offrons aussi le 635nm mieux visible à des pointeurs de laser. Livraison rapide - expédition mondiale!</a></TD>
</TR>
</TABLE>
<!-- End partner link Professionnel laser pointeur --> 
</TEXTAREA></TD>
</TR>


</TABLE>
</FORM>
<?php
}
?>
<!-- End own link info -->

if you look at the line if ($languages_id == 1){
1 is for english
2 is for german
3 is for spanish
4 is for french

i still have not been able to send the link info to a client from the admin side yet when you appove a link the email does not get sent not sure what the cause of this is yet.

you view the changes i made at www.myweb-host2.com/catalog/ and click on the different languages to see
Signs of desperation wishing, hoping, praying, crossing fingers, toes, arms, legs, crossing eye’s, now tied in knots and can’t see if it did work. Is there a chiropractor available.