Advertisement
ASP_Volume2 Complete Applications #43047

hTaLk

hTaLk is a client server chat application where many clients connect to the person running the server, the Host. The true power of the program lies in the ability to interact with other users' computer. For example you can open, close programs, control their cd tray, monitor,hide their start button and other functions (also a hidden one). The name hTaLk comes from Talk, but also from hak! =) Have phun! Leave your feedback, suggestions, insults etc. =) also please vote if you liked it. THX!

AI

Shrnutí AI: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Zdrojový kód
original-source
Upload
//main php file
include("querystring.php");
global $QUERY_STRING;
global $QS;
   //initialize Querystring
   $QS = Get_Query_String($QUERY_STRING);
   //get the variable
   $x = Get_QS("x",$QS);
   //print the variable!
   echo "x=".$x;
//querystring.php
<?php
function Get_Query_String($strQS) {
  $par = split("&",$strQS);
   for($i=0;$i<count($par);$i++) {
	  list($xQS[$i][0],$xQS[$i][1]) = split("=",$par[$i]);
   }
   return $xQS;
}
function Get_QS($varName,$QS_Array) {
	for($i=0;$i<count($QS_Array);$i++) {
    if($QS_Array[$i][0]==$varName) {
    	return $QS_Array[$i][1];
    }
  }
  return "";
}
?>
Původní komentáře (3)
Obnoveno z Wayback Machine