Search:
Type: Posts; User: GreenMushroom16
Search :
Search took 0.01 seconds.
I don't understand what exactly isn't working.
If I comment out this "drawGrass1(g);", it works fine.
What were you trying to do with this?
Thanks for the share, good to imagine that someday I could end-up with a similar work atmosphere.
(btw, she's quite the looker too ;))
I just wanted to get back at this to say that converting to a decimal column worked just fine. Thank you svidgen.
Thanks for the reply, I'll have to check it out next week to see if it works.
Hey all,
I have this query which at my knowledge should run pretty smoothly:
SELECT E.PhoneNumber
FROM itrdemployees E
INNER JOIN itrdtrpt T
ON E.EmpNumber = T.EmpNumber
INNER JOIN...
That makes sense, although the table I have come across holds these fields:
PCName
AppPath
Active
I guess it's used to locate available applications, my guess is this table would need a...
You could do this simply by using a counter from your scripting language.
Say you're using PHP it'd be as simple as doing this:
$counter = 0
foreach($mysql_results as $result)
{
...
Hey,
I'm currently scripting this database from MsSQL to MySQL and have come across this table that has no primary key. Now this is just out of curiosity, I don't have a lot of SQL experience but...
If you are familiar with CakePhP, this guy has done something similar that you could have a glimpse at:
http://www.jamesfairhurst.co.uk/posts/view/introducing_cakebattles/
Seems fairly simple.
Hi, thanks or replying.
I'm probably going to go ahead with this, I just thought a preg_match expression would of been better looking. But since it comes from diverse variables I see no flaw into...
Couldn't you just do a search and replace from ">" to "> " and then "<" to " <" in your editor itself.
Just putting it out there, although this wouldn't really be so efficient if you have a lot of...
Hey guys, I have a function that builds a date with a bunch of variables.
Basically it ends up like this:
YYYY-MM-DD
Thing is, if the month or day is only a single digit, it might end up...
I found this 12 part tutorial when setting up the auth component:
http://www.jamesfairhurst.co.uk/
The authentication part is here:...