Click here to Skip to main content
15,899,126 members

Comments by Morgan Estes (Top 13 by date)

Morgan Estes 20-Dec-13 18:16pm View    
No worries, everyone has to start somewhere, but it's difficult to try to help diagnose front-end issues without being able to see the code that's actually rendered in the browser. If you're developing locally and the page renders, copy and paste the source of the HTML and the CSS you're using into a service such as http://jsbin.com so we can see what you're working with.

My guess is that there is an issue with your CSS rules not being able to target the new elements, but I can't say for sure without seeing the rendered HTML and the styles you're trying to apply.
Morgan Estes 12-Dec-13 0:16am View    
Do you have a live example somewhere where we can see the full HTML output?
Morgan Estes 11-Dec-13 12:34pm View    
A couple of questions:

1) Are you using the PDO_SQLSRV driver? (Better yet, which driver are you using?)
2) Have you tried connecting to the db outside of PHP with that username/password combo to verify that they work?
Morgan Estes 11-Dec-13 11:19am View    
What styles aren't being applied? Do you have a <style> block in the page, or an external stylesheet, or some inline styles?
Morgan Estes 12-Nov-13 11:47am View    
Have you checked to see if there's a value in `$row->rate`? Try a `var_dump($row->rate)` or `var_dump($row)` to see what's going on with it, and if there's anything in there for `bindColumn()` to work with.