Skip to content
View karellism's full-sized avatar
:electron:
Educating myself
:electron:
Educating myself

Block or report karellism

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. CCS-HackerRank Public

    Code Challenge Solutions - HackerRank

    Java 1

  2. CodeChallengeSolutions Public

    My solutions to different code challenges on different websites in various languages

    C++ 1

  3. ronreiter/interactive-tutorials Public

    Interactive Tutorials

    Python 4.3k 2.7k

  4. Connect to database for simple CMS -...
    1
    public function connect() {
    2
        mysql_connect($this->host,$this->username,$this->password) or die("Could not connect. " . mysql_error());
    3
        mysql_select_db($this->table) or die("Could not select database. " . mysql_error());
    4
    
                  
    5
        return $this->buildDB();
  5. Saving the data to the database for ...
    1
    public function write($p) {
    2
        if ( $p['title'] )
    3
          $title = mysql_real_escape_string($p['title']);
    4
        if ( $p['bodytext'])
    5
          $bodytext = mysql_real_escape_string($p['bodytext']);
  6. Code template for a simple CMS - php...
    1
    <?php
    2
    
                  
    3
    class simpleCMS {
    4
      var $host;
    5
      var $username;