Link to home
Start Free TrialLog in
Avatar of oostwijk
oostwijk

asked on

Very EASY question

I want to test a variable if it has got characters in it. Somehow this doesn't work. Can someone provide me with the correct code ?

if $form{$key}='' {
 print "allright";

  }
Avatar of oostwijk
oostwijk

ASKER

I ment to say:

if $form{$key}="" {
 print "allright";
  }
ASKER CERTIFIED SOLUTION
Avatar of maneshr
maneshr

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Ok, that works fine...