隐藏/显示特定用户的表单

I wan't to show a particular form to the admin user, but I wan't to hide the form for other users. I have tried evrything but it doesn't work.

Code:

<?php if($user_profile['id']=='562004018'){ ?> //show form for this user
            <div class="span4">
            <form method="post" action="">
                <fieldset>
                <legend>Make a new Project</legend>
                    <label>Title</label>
                    <input type="text" name="project_naam" placeholder="Put here your Project Name...">
                    <input name="submit" type="submitproject" class="btn" value="Save">
                </fieldset>
                </div>
        <?php  } else {?>
        <div class="NoScript">
        <div class="span4">

            <form method="post" action=""> // hide form for this kind of users
                <fieldset>
                <legend>Make a new Project</legend>
                    <label>Title</label>
                    <input type="text" name="project_naam" placeholder="Put here your Project Name...">
                    <input name="submit" type="submitproject" class="btn" value="Save">
                </fieldset>
                </div>
                </div>
        <?php } ?>

Code:

 <style>

   .NoScript 
    { 
    visibility: hidden; 
    }
   </style>