I recently had an accoutn with godaddy and found they did not support FFMPEG so I cancled that account, now I want to use a local server on my computer for testing so I do not have to pay for hosting. My question is how do I get a Mysql databse, php, and FFMPEG onto my conmputer?
If you are hosting this within your LAN and you will allow Internet users to access it, you'll need your hostname pointing to you public IP address and you'll need to configure port fowarding on port 80 and/or 443.
I try to create a simple OOP PHP that shows an error:
class_lib.php
<?php
class person {
var $name;
function __constructor($person_name){
echo "Initialize class";
}
function set_name($new_name){
$this->name($new_name);
} ...