October 4, 2002
jag har börjat lite smått med php.
och sysslat med asp innan.. jag skulle gärna vilja veta motsvarigheten till denna kod i php.
<% IF Request.QueryString("id") = "" then %>
<%
Else
%>
<%=Request.QueryString("id")%>
<% End If %>
<% IF Request.QueryString("id") = "start" THEN %>
<% ElseIf Request.QueryString("id") = "counterstrike" THEN %>
<% ElseIf Request.QueryString("id") = "broadcast" THEN %>
<% ElseIf Request.QueryString("id") = "divx" THEN %>
<% ElseIf Request.QueryString("id") = "information" THEN %>
<% ElseIf Request.QueryString("id") = "upload" THEN %>
<% Else %>
tjockis
<% End If %>
tack på förhand. 🙂
November 1, 2002
Jag kan inget om ASP, men jag kan ju alltid gissa.
ASP: Request.QueryString("id")
PHP: $HTTP_GET_VARS[id] eller bara $id
ASP:
PHP: $f = fopen("start.asp", "r"); fpassthru($f); ?>
Har inte testat detta, men jag antar att det skulle funka lika bra...
echo(implode("", file("start.asp"))); ?>
November 16, 2001
switch ($id) {
case "start":
include "start.php";
case "counterstrike":
include "counterstrike.php";
case "upload":
include "upload.php"
}
?>
De bör funka 🙂
*ryser när jag ser ASP kod, så jävla fult :)*
Kom på en sak 🙂 Detta kanske funkar:
if ($id) include $id . ".php";
?>
I så fall e de snyggt 🙂 hoho
*puss*
2 Guest(s)