Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
VMSone
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Designerscripte
VMSone
Commits
c108283c
Commit
c108283c
authored
5 years ago
by
Joel Kuder
Browse files
Options
Downloads
Plain Diff
Merge branch 'patch-22' into 'dev-3.0'
Update uebersicht.php See merge request
!25
parents
2c7c8024
8a7d7595
Branches
Branches containing commit
Tags
Tags containing commit
2 merge requests
!46
Release 3.0
,
!25
Update uebersicht.php
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
content/konto/uebersicht.php
+4
-2
4 additions, 2 deletions
content/konto/uebersicht.php
with
4 additions
and
2 deletions
content/konto/uebersicht.php
+
4
−
2
View file @
c108283c
<?php
userstatus
();
$sql
=
sql
::
$db
->
query
(
"SELECT u.nickname,u.vorname,u.nachname,u.angemeldet_seit,w.werber,w.umsatz,w.gesamt,w.refback,k.kontostand,k.klicks,k.kv,k.angebettelt,k.bv
$sql
=
sql
::
$db
->
prepare
(
"SELECT u.nickname,u.vorname,u.nachname,u.angemeldet_seit,w.werber,w.umsatz,w.gesamt,w.refback,k.kontostand,k.klicks,k.kv,k.angebettelt,k.bv
FROM "
.
_VMS_
.
"_kontodaten k
LEFT JOIN "
.
_VMS_
.
"_userdaten u ON u.uid = k.uid
LEFT JOIN "
.
_VMS_
.
"_werberdaten w ON w.uid = k.uid
WHERE k.uid="
.
$_SESSION
[
'uid'
]
.
" LIMIT 1"
);
WHERE k.uid=:session_uid LIMIT 1"
);
$sql
->
bindParam
(
':session_uid'
,
$_SESSION
[
'uid'
],
PDO
::
PARAM_INT
);
$sql
->
execute
();
$kontoinfo
=
$sql
->
fetch
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment