Just need some help with the post / get functions php script.
I have the post function working with this php script
<?
$guiban = fopen("guiban.txt", "a+");
fwrite($guiban,"$guibanvalue\r\n");
fclose($guiban);
?>
but, how do i create a get function script in php.. I need the php to find a text stored in %variable% on setupfactory and get the line number and return it to setup factory in %linenumbervariable%... how would this be done?
so it will look up let's say "thisword" on "guiban.txt" and return whatever line number that "thisword" is on. please.. help.

