Hi!
as we can use a javascript using
<script src="xyz.js"></script> tag in .htm file.
can we use such a script for a php file?
infect i want to use a php counter on htm page but want to avoid <iframe> tag?
in the php file after some commands one variable is displayed like
echo $count;
i've tried using
<script src="http://domin.ext/counter.php"></script>
but its not showing the variable value though counter works in this way i.e. counter is incremented but not displayed on .htm page;
I have also the tried script tag for a php file having a single echo statement for variable as well for string; also i have tried image on php file bt no display;
please help me out if it is possible to display php file in this way...