Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Can some one explain to me what this means?


Guest

Recommended Posts

Posted

Hi, can some one tell me what is this line trying to do in English Please....

 

echo '<a href="' . tep_href_link(FILENAME_WISHLIST, tep_get_all_get_params(array('action')) . 'action=add_wishlist') . '">' . tep_image_button('button_wishlist.gif', IMAGE_BUTTON_ADD_WISHLIST) . '</a>'; ?>

 

and does the "tep" stands for? how is this use? Many Thanks.....

Posted
Hi, can some one tell me what is this line trying to do in English Please....

echo '<a href="' . tep_href_link(FILENAME_WISHLIST, tep_get_all_get_params(array('action')) . 'action=add_wishlist') . '">' . tep_image_button('button_wishlist.gif', IMAGE_BUTTON_ADD_WISHLIST) . '</a>'; ?>

+echo - prints to the borwser

'<a href="' . - first part of anchor link reference (<a href="">)

tep_href_link(FILENAME_WISHLIST, tep_get_all_get_params(array('action')) . 'action=add_wishlist') . '">' - last part of that tag, linking to the WishList page

. tep_image_button('button_wishlist.gif', IMAGE_BUTTON_ADD_WISHLIST) . - display the button as the link placeholder

'</a>' - </a>

; - ends the echo command

?> - ends PHP

If at first you don't succeed, you must be a programmer.

 

Tip Posted: Languageless Reviews

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...