
trq
Staff Alumni-
Posts
30,999 -
Joined
-
Last visited
-
Days Won
26
Everything posted by trq
-
The simplest way to gain request-start to request-end speed is to cache using something like akamai.
-
vim for Windows? Yuk.
-
2 & 3 will never happen using vim's autocompletion. And 1, well, vim gets its context from a few different locations depending on the keystroke you use to start completion. Generally, I only ever use the context of the current buffer. This meens variables will only be completed if they already exist in the current buffer. Not that I use completion often anyway.
-
Not at all. That's why I said I rarely use it.
-
vim's code completion is the best (quickest and most flexible) Ive used, not that I use it often.
-
WordPress plugin I had help writing broken with a recent WP update...
trq replied to Jim R's topic in Applications
$lstr needs to be the second argument to prepare() not query(). -
WordPress plugin I had help writing broken with a recent WP update...
trq replied to Jim R's topic in Applications
Post your current code. -
WordPress plugin I had help writing broken with a recent WP update...
trq replied to Jim R's topic in Applications
WHERE ".S_DB.".wpSlug in(%s)"), $lstr); -
WordPress plugin I had help writing broken with a recent WP update...
trq replied to Jim R's topic in Applications
Instead of using variables directly within your query, you use placeholders. You then pass your variables in as extra arguments to prepare(). -
WordPress plugin I had help writing broken with a recent WP update...
trq replied to Jim R's topic in Applications
Have you looked at the documentation for the prepare method? It looks similar to sprintf, and it looks like your code is not using it properly. -
Its just a single image (that doesn't even fill a widescreen monitor mind you). There is no "web design" to critique.
-
So your issue is with jQuery? This is the php help forum.
-
How do you expect us to help without a description of your problem?
-
Unexpected 'else' (T_Else) On Line 11 With Login Member System
trq replied to HeroSteve's topic in PHP Coding Help
Have a look at line 6. -
Is It A Common Practice To Use Orm In Web Applications?
trq replied to Hall of Famer's topic in Application Design
For smaller less complex applications ORM's are great. Once things start to get more complex however, I have found they just get in the way. They make the simple things even simpler and the complex things more complex IMO. -
Why would you change it in the first place knowing you only get 1 change every 365 days? I think you should keep the name you have, at least for a little while.
-
Just a heads up. I have changed my display name. thorpe -> trq
-
This resonates with me more than anything else. http://blog.sanctum.geek.nz/series/unix-as-ide/
-
And your problem is?
-
Several solutions have been supplied. What have you tried? Can we see your current code?
-
Your going to need to be more specific. Save a query to where and for what? You can create a stored procedure.
-
You have failed to ask any question. What exactly is the problem?
-
That code could not possibly output those results. OT, your echo line is making an invalid link, it should be: echo "<a href='tag.php?tag=$p'>" . $pmod . "</a> ";
-
It's JavaScript, it should not be between <?php ?> tags.