Hi friend!
I want to get the code which helps daniweb to show the preview of every site/link it gets. For example let me give a link here whenever i hover my cursor to that link,it shows me a preview of that site. Can you give me the code which makes it possible? Also is there any open source tool available to do this task?
Thank you so much.
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);
} ...