oversætte asp til php noget graf noget
Hvordan skal jeg oversætte den her til php må sku nog indrømme jeg er lidt tom for ider :(<%
end if
if request.form("type") = "besog_dag" then
sql = "select dato,antal from info"& record("inforef") &" where sideID = '"& request.querystring("id") &"' ORDER BY dato desc LIMIT 0,30"
set record2 = rs.execute(sql)
%>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="100%">
<font face="Verdana" size="2" color="#000000"><b>Unikke besøgende fordelt på dage<hr></b></font>
</td>
</tr>
<tr>
<td width="100%">
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<%
if record2.eof then
%>
<tr>
<td width="590" colspan="3">
<p align="center"><b><font face="Verdana" size="1">Der er
ingen statistik tilgængelig</font></b></td>
</tr>
<%
else
%>
<tr>
<td width="100"><font face="Verdana" size="2"><b>Dato</b></font></td>
<td width="90"><font face="Verdana" size="2"><b>Antal</b></font></td>
<td width="400"><font face="Verdana" size="2"><b>Graf</b></font></td>
</tr>
<%
color = "E6E6E6"
y = 0
do
if record2("antal") > y then
y = record2("antal")
end if
record2.movenext
loop until record2.eof
record2.movefirst
do until record2.eof
theDate = Record2("dato")
dato = FormatDateTime(theDate, 2)
b = (Record2("antal") / y) * 400
theDate = record2("dato")
tid = datePart("yyyy",theDate) & "-" & datePart("m",theDate) & "/" & datePart("d",theDate)
%>
<tr>
<td width="100" bgcolor="#<%= color %>"><font size="1" face="Verdana"><a href="default.asp?go=stats&id=<%= request.querystring("id") %>&type=time&dato=<%= tid %>"><%= dato %></a></font></td>
<td width="90" bgcolor="#<%= color %>"><font face="Verdana" size="1"><%= Record2("antal") %></font></td>
<td width="400" bgcolor="#<%= color %>"><font face="Verdana" size="1"><img border="0" src="gfx/graf.gif" width="<%= b %>" height="10"></font></td>
</tr>
<%
if color = "E6E6E6" then
color = "FFFFFF"
else
color = "E6E6E6"
end if
record2.movenext
loop
end if
%>
</table>
<font face="Verdana" size="2"> </font>
</td>
</tr>
</table>
<%
end if
