Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anower77/php
Basic php --
https://github.com/anower77/php
Last synced: 7 days ago
JSON representation
Basic php --
- Host: GitHub
- URL: https://github.com/anower77/php
- Owner: Anower77
- Created: 2023-01-14T01:56:59.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-01-29T09:47:53.000Z (almost 2 years ago)
- Last Synced: 2023-08-01T07:40:46.801Z (over 1 year ago)
- Language: PHP
- Size: 246 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 :
```