If I was to go about displaying just MY github repositories and their contents on an external website how would i go about doing this? Are there any source code\'s you can
You need to parse the respone Githubs API sends you back. In PHP you can do this by using json_decode()
which will give you an array to work with. You can use something like curl to issue the requests from PHP and then get the results and parse them as described above.
Another way to do this are REST Client classes for PHP, have a look at this one here for example.