LightElf (Programmer) Feb 17, 2002
1) <img src="
height=1 width=1>
2) <!--#include virtual="/cgi-bin/myscript.pl" -->
LightElf
this maybe a dum question but can I say include a VB scritp
useing this?
<!--#include file="modb.asp" -->
<!-- mod.asp script -->
<% On Error Resume Next %>
<% If Handle="WarGod MA" then
Response.write "<b><font color='gold'>"
end if %>
<!-- endmod.asp script -->
is how I would do it in VB or ASP how would I do this in perl?
I have a perl .pl file that looks like this
#new
$count = 0;
open (COUNT, '/user/chatuser.5020');
$count++ while (<COUNT>);
close(COUNT);
print " <td align='center' valign='top' width='500'><a\n";
print " href='
print "<font color=silver><font size=5>Council members ($count)</a>\n";
open (USERS, "/user/chatuser.5020"

;
while (<USERS>) {
($ip,$name)=split(/:/,$_,2);
print "<table><TR><TD>\n";
print "<font size=4><FONT COLOR=Gold>\n";
print $name;
print "</FONT>\n";
print "</TD></TR></table>\n";
}
close(USERS);
print "<br></a>\n";
#end row
I want to incude a file that will see the names in this file "/user/chatuser.5020"

; all ready made by My other software and if a Name or membername is in that list print it on page lets say purple!
I have posted alot about this But i figure you can help here