Guest Posted May 21, 2004 Posted May 21, 2004 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.....
SGershon Posted May 21, 2004 Posted May 21, 2004 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
Recommended Posts
Archived
This topic is now archived and is closed to further replies.