Hello All; I'm trying to figure out how to use frames with PHP. I am customizing an online store called "freetrade" it is very good but I want to convet it to frames. One of the links in the store looks like theis " print("<A HREF=\"" . ScreenURL("admin_menu") . "\">"); print(L_NAV_ADMIN_MENU); print("</A><BR>\n"); "
How do i tell that link to open in the frame named "content"?
Shawn
Do this exactly as you would with HTML, only escape the quotes etc.
eg: echo "<A HREF=\"URL.php TARGET=\"_top\">Link Name</A>"
Hope this is some help...