<?php

 $campo1 = "1";
 $valor1 = 1;

   if($campo1 === $valor1){
      $msg="ok";
   }
   else{
      $msg="erro";
   }
echo $msg;
?>