Hello! So an example, on the page we will display the image using a script, in the script we write:
print "Location: <адрес нашей картинки>\n\n";
in html:
<img src=".../НашСкрипт.cgi?<Какие то параметры>">
As a result, our picture will appear on the page (the simplest counter works like this). And I need, instead of a picture, the script returns a string, "1.23" for example (depending on the parameters passed to it). Something like: return "1.23"; Those. there is for example a tag:
<b>Что прописать в скрипте и как его отсюда вызвать, что бы здесь появилось - 1.23</b>
The bottom line is that it is not desirable to make the page dynamic and completely output by the script, as well as make some other changes to the html code. Now on the page and spelled:
<b>1.23</b>
I need to change the 1.23 script. I hope the question is clear. Thank!