Hi I am a beginner in PHP an currently learning Integer.
In my IDE I am not getting a report of a problem, but something seems to be wrong, because I get this when I try to run the program. Parse error: syntax error, unexpected T_STRING in /data/multiserv/users/733259/projects/1775490/www/newfile.php on line 2
[php]<?php
$right_write = 0b10;
$right_read = 0b01;
$user_rights = 0b01;
//Diese Operation ergibt 01 und wird zu “true” konvertiert
if ( true == (bool) ($user_rights & $right_read))
{
echo “Reading Allowed”;
}
if (true == (bool) ($user_rights & $right_write))
{
echo “Writing allowed”;
}
[/php]
I hope you can help me and I am very sorry for my bad english and php knowledge
I started reading the book yesterday^^
Thanks for helping me out.