July 19th, 2000, 12:11 PM
-
I am trying to get a script from webmonkey at http://hotwired.lycos.com/webmonkey/...tw=programming to work.
They provided the scripts, but what I can't figure out to do is to call the script after I click on the link... you know what I mean? If I click on the "next" link which will display the correct url in the status bar, but the script gets called, how is that done?
I am also curious about how the php builds the site, like how did it get the new links into the page even though the link directed to a html file instead of a php file.
I am not interested in using forms, just simple text links.
I would greatly apprieciate any sort of help.
July 19th, 2000, 01:54 PM
-
I'm not sure exactly what you mean. But maybe an SSI is what you're wanting. If you're calling the php script in an html file, you'll need to do this:
<!--#include virtual="script_name.php3" -->
of if you're including the php script in a php do it like this:
<? include('script_name.php3'); ?>
I hope this helps.