Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/anower77/php

Basic php --
https://github.com/anower77/php

Last synced: 7 days ago
JSON representation

Basic php --

Awesome Lists containing this project

README

        

### __Object Oriented Programming (OOP)__

```php

a = $x;
$this->b = $y;
}

//Access modifier - public, private, protected
public function addsum(){//methods
$this->c = $this->a + $this->b;
return "Result: " . $this->c;
}

}

// object

$math = new MyName(200, 500);
echo $math->addsum();


echo "
";

$math = new MyName(500, 400);
echo $math->addsum();

?>

```

## __Simple Project (PHP)__

Main Program (html)

```html




Document

User Name :



E-mail :



Password :





```

Contact page details

```php


Username :


E-amil :


Password :

```