A Sharing violation
Posted: Fri Sep 16, 2011 12:39 am
When I run the following code:
This errors appears:
A sharing violation occured while accessing C:\xampp\htdocs\php_exercise\exercise1.php
why is it?
Code: Select all
<?php
$firstname = "First Name";
$middlename = "Middle Name";
$lastname = "Last Name";
$name = $firstname .“ “. $middlename .” “. $lastname
echo $name
?>
This errors appears:
A sharing violation occured while accessing C:\xampp\htdocs\php_exercise\exercise1.php
why is it?