Search:
Type: Posts; User: tgrk35
Search :
Search took 0.02 seconds.
Seems we're getting this error even if we try to go to a non-existent page. Instead of a 404, we get this...
Any ideas?
I'm not sure the friendly-error thing is what I really need because of...
I'm pretty new to IIS. Where would I find this?
We just got IIS 7 up and running with PHP5.
Problem is, whenever I try to instantiate a class object, I get this error:
Here is the code in question:
$dbh = new Oracle('user',...
The object is actually a <div>.
I don't want each individual div on a new page...unless that div was to be broken up to two pages. If that's the case, I want it to move that div to a new page.
...
Basically this isn't a static page. It's pulling records from a database. The length of these "articles" for lack of a better word could be any length.
Make sense?
I'd like to be able to say "if this object is going to get cut off between two pages, please just break before it."
Is that possible? I know you can manually set a page break... or manually force...
while ($row = mysql_fetch_assoc($emp_type_results)){
print_r($row);
if($row['emp_type'] == 'USS'){
$results['emp_type-uss'] = $row['total'];
}
if($row['emp_type'] ==...
I forgot to mention. I don't currently have any db records with a blank 'emp_type'. I think if I did, my code would work just fine.
Hey, one last question. I promise.
Here's what I have:
// SQL Queries
$queries = array('emp_type' => 'SELECT COUNT(*) AS `total`, `emp_type` FROM `responses` GROUP BY `emp_type`;',
...
That seems to work perfectly :).
Now... one last thing. Say I have something like this: http://screencast.com/t/ODBlNTNmYWMt
Do I have to create a new sql statement + while loop for each of the...
Ok, here's what I got so far:
$emp_type = "SELECT COUNT(*),`emp_type` FROM `responses` GROUP BY `emp_type`;";
$emp_type_results = mysql_fetch_assoc(mysql_query($emp_type));
echo '<pre>';...
Naw, I've got that. I just didn't know how to output the individual numbers to my table rows.
How would I then output that to my table rows?
Naw, what I'm really trying to do is add more than just the formatDate option.
Here's the jist of what I'm trying to do:
Use one SQL statement to pull all records from a db within a certain date range.
From there I want to be able to count how many people answered...
You have to do the $('.date').datepicker(); to initialize it. The .click stuff will make it so that you have to click it first for it to initialize. Totally not what you want.
I'm new to jQuery (and most things), so I'm needing some help.
I'm attempting to use datepicker (with jQueryUI) and I'd like to set both the "dateFormat" and "altFormat" options for it.
...
Anyone out there ever written a Wordpress plugin?
Having issues with one where certain themes are screwing up my styles.
I have a theme right now that has
a img{background: #fff; } in the...
I'm EXTREMELY new to JSP and have what is probably a VERY basic question.
I'm attempting to edit a JSP file in Notepad++ on our Tomcat server (6.0).
Anytime I try to hit save, it says this:
...
If I see this when I first install, that just means I'm running PHP5?
I know I've set this up on 5 before, but it was on Apache. I'm running this on IIS.
I haven't gotten around to doing...
Alright.... finally got it.
I had Simple File Sharing enabled.
Now I have THIS problem:
http://screencast.com/t/kvsAwuva
Here is what I see:
http://screencast.com/t/qShvGbdj5K
Apologies for the screenshot, the site isn't actually live.
I hate IIS, so I don't know much about it (funny how that works). I am...
Alright, I give up. Absolute positioning it is ;).
Thanks for your help :).
The page is dynamic.
I see what you're getting at... I would like to steer away from absolute positioning. I suppose it would work, but I know that floating works as well...just not working at the...
width: auto is based on the child elements. The parent expands to fit those child elements.
I am wanting the floated elements to make the parent grow wider. So, #body-container should expand...