Jump to content
Dustloop Forums

Angel

Members
  • Posts

    256
  • Joined

  • Last visited

Everything posted by Angel

  1. Good idea! Unfortunately, I'm not one to contribute, but it'll be cool to see this happen.
  2. GG's! Yeah, stay later! There were like 8 people playing at one point. It was awesome hanging out with you guys again. Good James! ^_^
  3. Me too! It's been forever!! Everyone else will barely be getting there around the time you'll be leaving. I was going to get there early and hog the cabinet to practice () though so I'll see you there.
  4. Eeeeeehhhhhhhhhhhhhhh....I'll be there. "/
  5. On CH only, I think. EDIT: I was thinking of 2C > viv > 2C. So, I don't know. DX
  6. Do you think the stream calendar brought more people to your stream last night? I saw about 30 viewers when I was on.

  7. Haven't even played since I was at AI last week. No point in me going.
  8. Holy shit. This thread. Awesome.
  9. lol, I see it. Awesome!
  10. For North America: Arcade Infinity no longer has two cabs, just one Viewlix. FFA isn't listed. And Japan Arcade in LA has CS as of a few days ago.
  11. I can see stuff happening on the front page. No luck? If you post the code you're using I might be able to help.
  12. Well, my neutral game is pretty terrible. So, as a Carl player (even though I don't blame my character) I was curious to see where he'd rank him. EDIT: Gotcha, thanks.
  13. I got troll'd. Should I even ask you to elaborate?
  14. Did you put Carl in two tiers on purpose?
  15. Me too. Congrats Sev!
  16. Btw, I tried making that quote smaller. I was down to one ASTRAL and BAW, still didn't fit. LOL, HE WANTS TO ASTRAL ME!!!

  17. After reading your post again I realized you may have the query part figured out and actually retrieved the value of one cell. Last night I kept reading 'customfields' as 'customfield' :facepalm:. So, it seems like vBulletin lets you make multiple custom fields and puts them all in that same field, makes sense. I researched it a little bit, and it seems that MySQL doesn't support an array data type. But, I noticed on the event page here that the custom field is displayed. If you have access to that code you could try and see how vBulletin does that by default. :shrug:
  18. Look out SoCal scene, I'm pushing the limits of being free and netplay. :P Good times...
  19. Unfortunately I know all about things that should be easy but turn into huge headaches. I've been noticing the progress on the front page, looks like you've almost got it! This part really confuses me. I don't know why all that would be in a cell that should just have a url. If I'm understanding the next part then this may not matter. If I understand this part, then you're saying you've done something like: $event = mysql_query("SELECT etc."); If you haven't, hopefully my answer will still help you. If you have, then the thing is that the mysql_query() function returns a recordset(even if it's only one record), not an array. And you can't just retrieve a value from a recordset. The mysql_fetch_array() function takes a recordset as input, returns an array on the current record, and moves to the next record in the recordset. So, to get an actual value from a recordset you have to loop through it with the mysql_fetch_array() function. Here's how I did it, hopefully the sample code with comments will clarify everything. # this gives me my recordset $result = mysql_query("SELECT * FROM `htsrc`.`news` ORDER BY `date` DESC") or die(mysql_error()); # this function tells me how many records are in the recordset, so I know how many times to loop $rows = mysql_num_rows($result); for ($i = 1; $i <= $rows; $i++){ # this gives me the array, from which I can actually retrieve values $row = mysql_fetch_array($result); # if all I wanted to do with each record is create a cell in a table containing a link which comes from a field in the record called url, I'd do something like this echo "<td><a href='$row[url]'>LINK</a></td>"; # note the syntax for retrieving a value from an array: $arrayname[fieldname] } [/PHP] Sorry if I'm totally on a different page here. Ask away, I'm about as familiar with css as I am with php. I'm happy to help if I can.
  20. I'll go since I haven't hung out with Sev in a few (weeks/months). :P
  21. Humbled? Oh! So, "Best Bang on PSN" is a desirable title?! Now I get it.
  22. I can do php and stuff like that, but I wouldn't know how to write something as a plugin for vBulletin. Would you just need a php file that queries the streams database and displays the results so you could write it into the main page as an include() type thing? Also, do you want to make an interface so that priveleged users can modify the streams database so you don't have to do it all manually? I don't have a ton of experience, but I have coded a webpape in php which interfaced with MySQL. Let me know if you think I can help. EDIT: I poked around some more on SRK and realized the calendar feature is pretty complex. That's all built in to vBulletin right? Were you saying that the part that was custom made was just the displaying it on the front page? Because that part should be easy.
×
×
  • Create New...