Register
FAQ
Calendar
Search
Today's Posts
Rules
Guidelines
SMS enable your application
via Clickatell’s fast, simple and reliable API's, built to integrate with any system.
Click here
to learn more.
Flash Website Builder
- Trendy Site Builder is a Flash Site Building tool that helps users build stunning websites.
Check Out Custom
Custom Logo Design
by LogoBee. Website Design and Free Logo Templates available.
CodingForums.com
>
Search Forums
Search Results
User Name
Remember Me?
Password
Before you post, read our:
Rules
&
Posting Guidelines
Page 1 of 20
1
2
3
11
>
Last
»
Showing results 1 to 25 of 500
Search took
1.67
seconds.
Search:
Posts Made By:
Keleth
Forum:
MySQL
05-18-2013, 05:27 PM
Replies:
12
Should I use a view or multiple queries?
Views:
331
Posted By
Keleth
Because forums_readdata_threads and...
Because forums_readdata_threads and forums_readdata_forums_c may not have data associated with that particular threadID (is a user has never visited that forum or thread), so an inner join would just...
Forum:
MySQL
05-17-2013, 06:50 PM
Replies:
12
Should I use a view or multiple queries?
Views:
331
Posted By
Keleth
If there are no new posts, it will still return,...
If there are no new posts, it will still return, but the HAVING will remove it from the return.
forum_readdata_forums_c:
select
`f`.`forumID` AS `forumID`,
`rdf`.`userID` AS `userID`,...
Forum:
MySQL
05-16-2013, 04:13 AM
Replies:
12
Should I use a view or multiple queries?
Views:
331
Posted By
Keleth
I actually use Navicat Lite, but I am actively...
I actually use Navicat Lite, but I am actively learning the actual commands so I can do it in the command line and so I know what the tools I'm using are doing.
Forum:
MySQL
05-15-2013, 07:37 PM
Replies:
12
Should I use a view or multiple queries?
Views:
331
Posted By
Keleth
Well, the other views are actually mutli-table...
Well, the other views are actually mutli-table joins.
So you think this is something that makes sense to have as a view/stored procedure rather then processed in PHP? Usually, its not about...
Forum:
MySQL
05-15-2013, 04:49 AM
Replies:
12
Should I use a view or multiple queries?
Views:
331
Posted By
Keleth
Well, I guess its a complex view by my standards:...
Well, I guess its a complex view by my standards:
select
`t`.`forumID` AS `forumID`,
`rdf`.`userID` AS `userID`,
`t`.`threadID` AS `threadID`,
`r`.`lastPostID` AS `lastPostID`,...
Forum:
MySQL
05-15-2013, 03:57 AM
Replies:
12
Should I use a view or multiple queries?
Views:
331
Posted By
Keleth
Should I use a view or multiple queries?
So I'm still not sure sometimes if I should be doing multiple queries and process in PHP, do a complex query, or create a VIEW.
So I guess first, does anyone have any general advice to the matter?...
Forum:
JavaScript frameworks
04-22-2013, 10:57 PM
Replies:
4
Running function in parent
Views:
205
Posted By
Keleth
Not sure what I did, but between your advice and...
Not sure what I did, but between your advice and my randomly trying combinations, it works!
Forum:
JavaScript frameworks
04-22-2013, 10:41 PM
Replies:
4
Running function in parent
Views:
205
Posted By
Keleth
Its a modal iframe within the main window. I had...
Its a modal iframe within the main window. I had to use parent in order to do things like refresh, why don't I need parent for accessing a function?
And AndrewGSW, I'll try that and get back to...
Forum:
JavaScript frameworks
04-22-2013, 09:46 PM
Replies:
4
Running function in parent
Views:
205
Posted By
Keleth
Running function in parent
I have a page I call in a modal window (jQuery Colorbox if it matters) that can be called from one of two different pages. In each page, I want it to have a different affect.
The page being called...
Forum:
JavaScript frameworks
04-12-2013, 07:45 PM
Replies:
5
jQuery
Selecting object not in DOM
Views:
269
Posted By
Keleth
What do you mean by manifest file? And...
What do you mean by manifest file?
And coincidentally... here I was, thinking I understood some things about best practice and how to speed up sites...
So I'm not good with server stuff...
Forum:
JavaScript frameworks
04-12-2013, 03:01 AM
Replies:
5
jQuery
Selecting object not in DOM
Views:
269
Posted By
Keleth
I was under the impression that browsers...
I was under the impression that browsers auto-cached? When you say cached there, do you mean something additional? I followed up to the very end.
How I have my stuff setup now is similar to what...
Forum:
JavaScript frameworks
04-11-2013, 11:23 PM
Replies:
5
jQuery
Selecting object not in DOM
Views:
269
Posted By
Keleth
Selecting object not in DOM
I'm sure this is an oft asked question; I just can't seem to word it in a way to to find said answer.
Common practice says to minimize the number of CSS and JS files you load. However, I always...
Forum:
HTML & CSS
12-27-2012, 11:37 PM
Replies:
1
Resolved
Giving absolute positioned items an auto width
Views:
179
Posted By
Keleth
So I just did yet another google search with...
So I just did yet another google search with slightly different terms and came up with the super easy and working solution:
CSS- white-space: nowrap;
Forum:
HTML & CSS
12-27-2012, 11:35 PM
Replies:
1
Resolved
Giving absolute positioned items an auto width
Views:
179
Posted By
Keleth
Giving absolute positioned items an auto width
I made a simple drop down menu, eg mouse over an item and a list of items drops down from it.
I wrote some Javascript (jQuery) that gives the item that drops down (a ul) a min-width equal to the...
Forum:
JavaScript programming
10-05-2012, 04:58 PM
Replies:
6
Passing by reference to function
Views:
543
Posted By
Keleth
Well, as its a jQuery function, a prototype, what...
Well, as its a jQuery function, a prototype, what I want to do is tell it to act on a certain element, then be self sustaining. As it does an AJAX call based on the data it collects, I want to tell...
Forum:
JavaScript programming
10-05-2012, 02:48 PM
Replies:
6
Passing by reference to function
Views:
543
Posted By
Keleth
I had read the same, but I tried that to no...
I had read the same, but I tried that to no avail, lest I did something wrong.
I created a JSON before the call to the function, passed it to the jQuery function, wrote it to the console when...
Forum:
JavaScript programming
10-05-2012, 06:04 AM
Replies:
6
Passing by reference to function
Views:
543
Posted By
Keleth
What I'm trying to do is make an autocomplete for...
What I'm trying to do is make an autocomplete for one of my sites. Autocomplete, on its own, is pretty straight forward, and I got it working with some nice fun features (up/down arrows to move...
Forum:
JavaScript programming
10-05-2012, 04:50 AM
Replies:
6
Passing by reference to function
Views:
543
Posted By
Keleth
Passing by reference to function
So I'm making a jQuery function to which I'd like to pass a JSON containing two data from two form elements. I'd like to have the function take the current data in the fields when it works. However,...
Forum:
HTML & CSS
10-03-2012, 04:32 PM
Replies:
12
Some CSS not working in PHP
Views:
599
Posted By
Keleth
Shouldn't... :focus is supposed to work work in...
Shouldn't... :focus is supposed to work work in IE8+
Forum:
PHP
10-02-2012, 10:00 PM
Replies:
6
Why doesn't Wordpress allow my PHP code?
Views:
583
Posted By
Keleth
Did you enter this into the WYSIWYG or into the...
Did you enter this into the WYSIWYG or into the file itself?
Forum:
HTML & CSS
10-02-2012, 05:35 PM
Replies:
12
Some CSS not working in PHP
Views:
599
Posted By
Keleth
Avoid !important... the more you use it, the more...
Avoid !important... the more you use it, the more habitual it becomes, and the worse your code gets. Avoid it at all costs. Most uses of !important are because you didn't write your CSS properly.
...
Forum:
HTML & CSS
10-02-2012, 04:41 PM
Replies:
12
Some CSS not working in PHP
Views:
599
Posted By
Keleth
This has nothing to do with PHP... PHP is a...
This has nothing to do with PHP... PHP is a server side technology, while CSS is client side. They don't ever interact directly.
So what you're saying is that if you put your input[type="text"]...
Forum:
MySQL
09-30-2012, 07:53 PM
Replies:
8
Working with large DBs
Views:
1,193
Posted By
Keleth
I checked if it existed because I would need the...
I checked if it existed because I would need the ID returned. When I insert, I use the last insert ID to insert the registration row, and when the user already exists, I extract the voterID it...
Forum:
MySQL
09-30-2012, 06:09 PM
Replies:
8
Working with large DBs
Views:
1,193
Posted By
Keleth
The method I'm using is pretty inefficient I...
The method I'm using is pretty inefficient I think...
I have a CSV with usernames and tags. It loops through, checks to see if the user already exists, if not, it inserts. It when loops through...
Forum:
MySQL
09-30-2012, 07:44 AM
Replies:
8
Working with large DBs
Views:
1,193
Posted By
Keleth
The issue I'm facing is namely on inserts. What...
The issue I'm facing is namely on inserts. What I've got is basically an online voting system; I have a registration table, matching a user to a ballot. I run the student government elections for a...
Showing results 1 to 25 of 500
Page 1 of 20
1
2
3
11
>
Last
»
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
:: Client side development
JavaScript programming
DOM and JSON scripting
Ajax and Design
JavaScript frameworks
Post a JavaScript
HTML & CSS
XML
Flash & ActionScript
Adobe Flex
Graphics and Multimedia discussions
General web building
Site reviews
Building for mobile devices
:: Server side development
Apache configuration
Perl/ CGI
PHP
Post a PHP snippet
MySQL
Other Databases
Ruby & Ruby On Rails
ASP
ASP.NET
Java and JSP
Other server side languages/ issues
ColdFusion
Python
:: Computing & Sciences
Computer Programming
Computer/PC discussions
Geek News and Humour
Web Projects and Services Marketplace
Web Projects
Small projects (quick fixes and changes)
Medium projects (new script, new features, etc)
Large Projects (new web application, complex features etc)
Unknown sized projects (request quote)
Vacant job positions
Looking for work/ for hire
Project collaboration/ partnership
Paid work offers and requests (Now CLOSED)
Career, job, and business ideas or advice
Domains, Sites, and Designs for sale
Domains for sale
Websites for sale
Design templates and graphics for sale
:: Other forums
Forum feedback and announcements
All times are GMT +1. The time now is
01:35 AM
.
Web Hosting UK
|
Dedicated Server Hosting
|
Shareware Junction
|
Software Geek
|
Flash file uploader
|
Cloud Server
|
Web Hosting Australia
Home
-
Contact Us
-
Archives
-
Link to CF
-
Resources
-
Top
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.