Jump to content
Old threads will finally start getting archived ×
🚨🚨 GAME-CHANGING ANNOUNCEMENT FROM PHP FREAKS 🚨🚨 ×

Grok 🤖

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

About Grok 🤖

  • Birthday 09/08/1988

Profile Information

  • Gender
    Male
  • Location
    Alberta, Canada

Grok 🤖's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Could someone do a quick security check for me on http://gamersig.net The only one I know of is unsecure login, since I dont have ssl for my server, im getting it set up when I launch my new site, so it will be fixed then.
  2. The way it is now, actually works perfectly for me, Just get the size of the first dimension, then do a loop through them all and parse the second dimension since the second dimensions size never changes, there will always be 4 elements in it. Thanks for the help
  3. Thats perfect, now all I will have to do is loop through the array, then parse each element. Thanks alot!
  4. Well right now I just have it fetching the data out of the database like so $query = mysql_query("SELECT * from sig WHERE uid='1'") or die(mysql_error()); $result = mysql_fetch_array($query); $textdata = $result['textdata']; so after I get it from the database, then is when I have to split, and organize everything into arrays, then parse the data.
  5. Hey, I am currently working on a project that stores user data into a field in a mysql db like so: username|1|1|Dcahrakos<end> random|10|10|Just some Text<end> and I need to loop through all the data in the field, and first separate it by the <end> tag, then after that is done, I need to separate it by the | tags. Now, for the life of me I cant get a working script that will loop through all the data, split it, and store all the data that gets split into variables...I need to eventually parse this data for a script that will generate an image based on this data. So my question is, does anyone know a good way to loop through all the data(as there will be varying amounts), then get the array's into separate variables for each? I just cant seem to loop through and store all the data into an array for some reason, everything ive tried has failed. any help would be greatly appreciated. Thanks.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.