Jump to content
MakeWebGames

WarMad

Members
  • Posts

    218
  • Joined

  • Last visited

  • Days Won

    7

Everything posted by WarMad

  1. WarMad

    date function

    i am trying to create the events page for a new engine im making and im getting this error Fatal error: Uncaught Error: Undefined constant "F" in /storage/ssd1/568/18613568/public_html/events.php:38 Stack trace: #0 {main} thrown in /storage/ssd1/568/18613568/public_html/enents.php on line 38 this is the line causing the issue <td align="right">'.date(F.' '.d.', '.Y.' '.g.':'.i.':'.sa,$row['time']).'</td> fixed thanks adam
  2. Welcome back
  3. Ayyyy welcome
  4. It looks good from what I can see let us know when we can register
  5. WarMad

    Mccode v3

    It’s not coming lol
  6. I might play with this for a couple different things thank you
  7. I stand corrected I was told BOTH
  8. What kind or rating? Profiles? Forums?
  9. To improve front end
  10. is there a free engine out there that mainly runs on JS? i am asking because im working on my own engine and i would like to learn how to apply some more js to it. i was talking to someone who said he has a script thats more JS then php. he does not have a free version of it and i cant afford to buy it just for learning purposes.
  11. in the mug file
  12. its not here anymore any chance you still have it?
  13. Ya I want it for desktop use I don’t have an insane amount of experience with Linux but I’m learning 🤣
  14. I am just wondering what one is better and why? I currently run Ubuntu but I can’t update it I have tried 95847383 different things but I’m stuck at 18.4 and can’t get to 20.4 so I’m looking to possibly switch
  15. That didn’t work I ended up just canceling the whole thing and giving it 1000 different tries to get the wrapper to work and I can’t seem to get it I can get it to not display any errors but when it’s not then it still doesn’t send the query to the database it acts as if the query is not there but with that being said it will pull from the database just not update it it….
  16. I will give that a try
  17. Been trying several different things and still can’t get it working maybe it’s a xampp issue….
  18. I will give this a try I’m trying to wait and see if mtg reply’s first sense he did make the wrapper
  19. yes i am I found out that the sql is not working for some reason I double checked everything and I dont see anything wrong with it. How is it solved?
  20. I have also tried == when I do that it acts like $row doesn’t exist so I basically see what’s inside of the if(!$row) func
  21. i am using php 8 & PDO but i am trying to select enum from the database for friends and enemys list and im not getting an error but i can only get it to say that i am friends with them so it just says remove friends i have tried several different things to get it to select if your friends or enemys but it will not let me do it here is my code $db->query('SELECT type, user, person FROM lists WHERE user = ? AND person = ?'); $db->execute([$i['userid'], $u['userid']]); $row = $db->fetch_row(); if(!$row) { $fri = '<a href="friends?add='.$profile_info->name.'">Add friend</a>'; $ene = '<a href="enemys?add='.$profile_info->name.'">Add enemy</a>'; } else { if($row['type'] = 'friend') { $fri = 'remove friend'; $ene = ''; } else if($row['type'] = 'enemy') { $fri = ''; $ene = 'Remove enemy'; } }
  22. You ever launch this? It looks great
  23. The reason I hate it is I don’t understand it lol I will play with what you just gave and see if I can make something work I haven’t decided to do per level or crime level yet but I do like that easy medium hard thing it will make it way easier for me haha and as always thank you for the reply my good friend
×
×
  • Create New...