Recent content by Ben144

  1. B

    rp_jobs id not working (help please)

    Hey, I am creating a custom CMS and i have stubbled onto a problem after changing the query (Shown in the code below). The query was needed to work the rest of the code, but when the user clicks on the "View" button then the user always gets directed to corporation with the id 1. <div...
  2. B

    How to pull info from database (help Please)

    It is working now, I forgot to change " . $row['owner_id'] . " to " . $row['username'] . "
  3. B

    How to pull info from database (help Please)

    Okay now it is displaying the owner id, but i want it to display the owner's username :/ 1613928963 Never mind it has worked. Thank you so much buddy :)
  4. B

    How to pull info from database (help Please)

    Now the below has removed from the page: <div class="content"> <div class="container"> <div class="corporation-index-grid"> <div class="corp"> <div class="content-box"> <?php $badgepath =...
  5. B

    How to pull info from database (help Please)

    Sure give me a sec 1613926153 My rp_jobs table is: Users table is:
  6. B

    How to pull info from database (help Please)

    Their is not change :/
  7. B

    How to pull info from database (help Please)

    1613916186 I am using FluxRP CMS & Emulator ect
  8. B

    How to pull info from database (help Please)

    I don’t know what the cms are actually called, but they are so outdated and you think I have ripped a cms of another website/game. Did it ever occur to you that I am maybe good at HTML and CSS. You also have not answered the question that was asked.
  9. B

    How to pull info from database (help Please)

    Hey i am recreating the jobs page on the FluxRP CMS and am trying to pull the relevant data from the rp_jobs table, but i am having no luck as when i want to display the owners name, then i put owner_id, but it only displays the owners id and not their full username. The same goes for the avatar...
  10. B

    How to enable and disable friend requests (Help Please)

    Cheers, but is it only the php code that i place in class.users.php and do I keep the html code where it is :/
  11. B

    How to make a space between staff boxes

    Hey, I am re-creating the staff page for my FluxRP hotel, but i can seem to make a space between them to be them tidy as they are mean to be 3 staff next to one another, but instead the second staff automatically goes under the first staff. <div class="content"> <div...
  12. B

    How to enable and disable friend requests (Help Please)

    Hey, I have created a simple settings page for the FluxRP Emulator ect and I have added an option for when a player click on the relevant button, then it will either disable or enable friend requests ect, but it is not working as when i add the php code, then the cms just breaks and when i...
  13. B

    How to make a button visible if your a gang member (Help Please)

    Hey, I am using FluxRP an i have created a simple button where the button is only visible to gang members only, meaning the user must be part of a gang to see the button, just like the gangs page but the button is not appearing . <?php $gangID = filter($_GET['id']); $topstatsurl =...
  14. B

    How to pull data from database table (Help Please)

    I have got it working to an extent, but it is not updating to the database. <?php if(isset($_POST['sendReviewSub'])){ $errors = array(); $failed = 0; $status = filter($_POST['b_status']); if($status...
  15. B

    How to pull data from database table (Help Please)

    Hey, I am using flurxRP emulator and cms and I am using a select/option on a form, where i want to have the option to set the option to either Pending or accepted, both option have been added to the database table and is fully working. But will i add the select and option attribute, then it...
Top