Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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

 
Forum Jump

All times are GMT +1. The time now is 01:35 AM.