Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
G
gameauth
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Analytics
Analytics
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
sucssite
gameauth
Commits
612c1aeb
Commit
612c1aeb
authored
Oct 29, 2015
by
Stuart John Watson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed bindParam to bindValue
parent
58f6921e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
controll_2.php
controll_2.php
+1
-1
No files found.
controll_2.php
View file @
612c1aeb
...
...
@@ -54,7 +54,7 @@
function
sqlite3Exists
(
$table
,
$col
,
$val
){
global
$DB_CON
;
$query
=
$DB_CON
->
prepare
(
"SELECT 1 FROM
$table
WHERE
$col
= :val LIMIT 1"
);
$query
->
bind
Param
(
':val'
,
$val
);
$query
->
bind
Value
(
':val'
,
$val
);
return
(
bool
)
$query
->
execute
()
->
fetchArray
();
}
function
sqlite3Exec
(
$query
){
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment