View Single Post
  #4  
Old 08-24-2006, 06:41 PM
Tolnaftate2004 Tolnaftate2004 is offline
penguin.
Join Date: Jul 2004
Location: Berkeley, CA
Posts: 534
Tolnaftate2004 is a jewel in the roughTolnaftate2004 is a jewel in the rough
Send a message via AIM to Tolnaftate2004
You could requesturl() a php/asp/perl/whatever script that retrieves the necessary information.

e:
I think a bit of clarifying is in order.

I mean something like this:
PHP Code:
temp.req requesturl("http://myurl.com/myscript.php?account=Tolnaftate2004"); 
myscript.php:
PHP Code:
<?php
  $host 
"localhost";
  
$user "joe";
  
$pass "mypass";

  foreach (
$_GET as $index => $val)
    $
$index $val;

  
$conn mysql_connect($host $user $pass);
  
mysql_select_db('mydb' $conn);

  
$res mysql_query("SELECT * FROM `mytable` WHERE account=$account",$conn);

  
// print the results in a fashion that can be easily translated into GScript
 
...
?>
Private data can be encrypted using GScript's md5() function.
__________________
◕‿‿◕ · pfa · check yer syntax! · src

Killa Be: when i got that locker in 6th grade the only thing in it was a picture of a midget useing a firehose :/

Last edited by Tolnaftate2004; 08-24-2006 at 09:25 PM..
Reply With Quote