Jump to content

Speedy84

Members
  • Posts

    10
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Speedy84's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. tried spaces? $BBHandler = bbcode_create($arrayBBCode);
  2. From what I've experienced so far it works pretty well... when i hold the mouse over the pattern it displays information about that part and so on.. Thanks for making me look up this plugin. I have little to no knowledge about regex, so this will be really usefull for me! also what i like is the direct access to the function list inside Eclipse.. you can highlight a function in your document and press Shift+F2 and it'll open the online manual page for that function.. as well as a full listview of all functions like several people here including me has said already... Eclipse PDT is a great editor
  3. My favorite editor is without a doubt Eclipse PDT. @zanus: There's a plugin called Regex Util. Haven't tried it myself, but i'll install it now and I'll come back with a "report" when I've tried it out
  4. is there a way to activate a function by using "onclick" or "onchange" in a dropdown menu? something like this <option onclick="<?php function(); ?>">Text</option>
  5. hm... well i might try, but what should i do? something like this? $points = 5; $totalvotes = 1; $rating = $points / $totalvotes; if (($rating >= 1) && ($rating <= 49)) { show_one_star; } elseif (($rating >= 50) && ($rating <= 99)) { show_two_stars; }
  6. I want to set up a 5 star rating system on my site. But I need some help with the calculations.. all I can come up with at this point is create a column in the db called "points" and one called "totaltvotes" and then do something like "points/totalvotes".. but i'm positive that this is wrong =)
  7. hmm.. i just removed the % on both A and Z.. but it still returns the same result as before ???
  8. I've been trying to figure out why this doesn't work properly, but with no luck Issue: It sorts out everything from A to Y, but returns all entries starting with a Z. mysql_query("SELECT * FROM `artists` WHERE `name` NOT BETWEEN 'a%' AND 'z%' ORDER BY `name` ASC") Thanks in advance /Speedy
×
×
  • 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.