Posts by PeeWee • 1 point
4 posts
-
-3
votes1
answer81
viewsQ: Problem with PHP and wordpress version
I am trying to learn wordpress and I came across the following problem: I have two notebooks with Windows 7 and in the oldest the most current version of wordpress gave incompatibility with PHP…
-
-1
votes2
answers39
viewsA: Function error when used on another page
runQuery($query, ’s', array($username)); Return $result; } Function getTokenByUsername($username,$expired) { $db_handle = new Dbcontroller(); $query = "Select * from tbl_token_auth Where username =…
-
-2
votes2
answers39
viewsQ: Function error when used on another page
I have the following code class Auth { function getMemberByUsername($username) { $db_handle = new DBController(); $query = "Select * from members where member_name = ?"; $result =…
-
0
votes0
answers166
viewsQ: Pagination of results in php with page limit
I have a website which I need to display several images per page. I limited this display to 16 items per page, which resulted in 10 pages. As the site will also be displayed on mobile, It will be…