On Wed, Aug 14, 2002 at 08:23:18AM +0000, Remon Redika wrote: > > <input type="text" name="namasa" size="40"> > <input type="text" name="namadu" size="40"> > <input type="text" name="namati" size="40"> > > $Namak = $namasa; > $Namak = $Namak.$namadu; > $Namak = $Namak.$namati;
Is that REALLY what you want to do? There are no spaces between the names. Try: $Namak = "$namsa $namadu $namati"; But, that's probably not the problem. I suspect none of the three variables are being set because you have register_globals turned off. Use the $_POST or $_GET variables. Read the manual on these topics for more information. --Dan -- PHP classes that make web design easier SQL Solution | Layout Solution | Form Solution sqlsolution.info | layoutsolution.info | formsolution.info T H E A N A L Y S I S A N D S O L U T I O N S C O M P A N Y 4015 7 Av #4AJ, Brooklyn NY v: 718-854-0335 f: 718-854-0409 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php