Computer Programmer/Software Developer
Innovative designs & practical code solutions.
Delivering results through best practices and simplicity.
Advanced level Java project from CIS249.
Advanced level C# project from CIS296.
RESTful and SOAP web services from CIS266.
Frontend(Html & Css) design from CIS195
Advance Application Development project from my CIS248
<?php // Sample PHP code $conn = new mysqli('localhost', 'root', '', 'forum'); $result = $conn->query("SELECT * FROM posts"); while ($row = $result->fetch_assoc()) { echo "<p>" . $row['content'] . "</p>"; } ?>