This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script type="text/javascript" charset="utf-8"> | |
function mySubmit(){ | |
var q=document.getElementById('q'); | |
var s=document.getElementById('s'); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class User{ | |
function setUsername($username){ | |
$this->internalUsername=$username; | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class user_shop extends DPLS_Controller{ | |
function __construct(){ | |
global $_user; | |
$this->_user=$_user; | |
global $db; | |
$this->db=$db; |
NewerOlder