aMule Forum

Please login or register.

Login with username, password and session length
Advanced search  

News:

We're back! (IN POG FORM)

Author Topic: Modifiy the skin Chicane  (Read 1416 times)

Delian

  • Newbie
  • Karma: 0
  • Offline Offline
  • Posts: 2
Modifiy the skin Chicane
« 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 ^^
Logged