I got 2 variables, $word and $letter, which I get with an HTML form. Here's a part of the code:
<form action="calc.php" method="post">
<font size=2>Word</font><br>
<input type=text name="word" size=20 maxlength=19>
<font size=2>Letter</font>
<input type=text name="letter" size=3 maxlength=1><br>
Now, I want to convert these 2 variables into 2 Integer variables, so I can then multiply these 2. Anyone know how?