aMule Forum

English => aMule Help => Topic started by: Delian on February 08, 2008, 01:48:21 PM

Title: Modifiy the skin Chicane
Post by: Delian on February 08, 2008, 01:48:21 PM
Hi
I'm trying to modify login.php of chicane skin.
I need to add a text-field and use the value in index.php but the var in indext.php result empty :(.
Is there any reason? I know the webserver php is different from real PHP.. there's a different way using POST method?

This is the code:
---in login.php (I've add this line in <form>   </form>:
   <input type="text" name="name" maxlenght=12 size=37 style="border-width: 1px; border-color: black; border-style:none;" value="">

---in index.php
<?php
$user = $_POST['name'];
echo "Hello " . $user ;
?>

thanks ^^