Question : how do i set up remote access

hi,
I am working in IT department for a very small company. Because i wanted to have a remote access to all the computers i have installed a free version of LogMeIn  on each one. Now, My boss wants to have a remote access to his workstation from "  anywhere " and in addition to that he employed a new person. That person will be working from home. So i think we have to buy another computer so that she can work remotely without interrupt others....

Could someone please help me and tell me what kind of remote solution i can deployed
I was thinking to update my free version of LogMeIn to LogMeInPro2  and then i would be able to give an access to my computers for other users by sending invitation.

The thing is that i am not sure if this is perfect solution.

Thanks


Answer : how do i set up remote access

You have to load it into an array first i think

The $_POST['firstname'] contains an array

so you can also loop through the array

if(isset($_POST['firstname'])){

   $myString = '';
   foreach($_POST['firstname'] as $myName){
      $myString .= $myName . ", ";
   }
      echo $myString;

}

or assign it to an array and then reference the index.

$myArray = $_POST['firstname'];
echo $myArray[3];
Random Solutions  
 
programming4us programming4us