Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Server Development
Habbo Retros
Habbo Q&A
How to pull info from database (help Please)
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="doe" data-source="post: 467823" data-attributes="member: 98944"><p>I see... The problem is: You only get the values from your rp_jobs table without a connection to your users table. You need to build a relation with the users table. Try this query instead:</p><p></p><p>[CODE=sql]$q = mysql_query("SELECT * FROM rp_jobs AS rp LEFT JOIN users AS u ON rp.userid = u.id WHERE rp.type = 'Skilled' and rp.hidden = 0");[/CODE]</p><p></p><p>I'm not sure where the "hidden" columns is from. If you encounter errors try to the change the text "rp.hidden = 0" to "u.hidden = 0". If you still encounter problems delete "rp.hidden = 0" from your query.</p></blockquote><p></p>
[QUOTE="doe, post: 467823, member: 98944"] I see... The problem is: You only get the values from your rp_jobs table without a connection to your users table. You need to build a relation with the users table. Try this query instead: [CODE=sql]$q = mysql_query("SELECT * FROM rp_jobs AS rp LEFT JOIN users AS u ON rp.userid = u.id WHERE rp.type = 'Skilled' and rp.hidden = 0");[/CODE] I'm not sure where the "hidden" columns is from. If you encounter errors try to the change the text "rp.hidden = 0" to "u.hidden = 0". If you still encounter problems delete "rp.hidden = 0" from your query. [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Q&A
How to pull info from database (help Please)
Top