Noah Goodrich

7,035
Reputation
375 views

Registered User

name Noah Goodrich
member for 1 year
seen 5 hours ago
website
location Logan, UT
age 26
An aspiring web developer working with PHP and MySQL
1d
awarded  Mortarboard
Dec
3
revised Any PHP MVC framework planning to use 5.3 features?
added 180 characters in body
Dec
3
answered Any PHP MVC framework planning to use 5.3 features?
Dec
1
answered Cannot modify header information - headers already sent, Why its happening
Dec
1
accepted MySQL join question
Dec
1
answered MySQL join question
Nov
30
answered unset session in Javascript
Nov
29
answered Zend Framework - get front controller from bootstrap ?
Nov
27
revised Necessity of foreign key in this case(innoDB/mysql)
Added retort for Charles Bretana who fails to differentiate between different RDBMS's.
Nov
27
comment Necessity of foreign key in this case(innoDB/mysql)
@Charles Bretana - Check the documentation for InnoDb Foreign Keys (dev.mysql.com/doc/refman/…). Indexes are required and will be automatically created as of Mysql 5.0
Nov
27
comment Zend Framework call view helper from a Zend_View_Helper
@EricP - You can extend the GeneralFunctions View Helper class with all of your View Helper classes like you're suggesting. Or, you can simply use the GeneralFunctions View Helper as a View Helper all on its own as I indicated in the sample code. Using this method, your other View Helpers still inherit the default Abstract class and then you call methods from the GeneralFunctions View Helper via the magic __call() method.
Nov
27
answered Necessity of foreign key in this case(innoDB/mysql)
Nov
27
answered When is best to use exceptions in PHP?
Nov
26
awarded  Good Answer
Nov
26
answered Zend Framework call view helper from a Zend_View_Helper
Nov
24
answered Changing return type when overidding a function in the subclass in PHP?
Nov
23
comment What should I learn?
jQuery can be easily be included and then used to replace the existing Ajax functions. Assuming that the previous coder wasn't a total douchebag, He still used a few core functions to provide Ajax functionality where needed that you should be able to rewrite. That said, this is why I recommended going to w3schools first. Before I picked a javascript library to use I learned what raw AJAX code would look like. Its always important to be able to understand what magic lies under the covers. :-)
Nov
23
answered What should I learn?
Nov
23
comment please can anyone check this code for image uploading
Are you receiving an error? Or is the file not being moved? What exactly isn't working that you need help with?
Nov
23
answered Development branch and trunk are inconsistent and I cannot get them in sync
Nov
23
comment please can anyone check this code for image uploading
You will need to post an exact error message along with the actual code if you would like assistance. I could probably create several different errors from this code, but we can only help with your specific one if you tell us what it is.
Nov
23
answered Zend Authentication Problem with subdomain
Nov
19
answered Consuming JSON object in PHP, sent from jQuery
Nov
19
comment I add 10 functions to a code, I don’t even call any of them, but the code stops working!
Have you tried just adding one function at a time? If there are syntax errors anywhere in the page, then all Javascript will cease to function.
Nov
18
comment Architecture of very complex php applications ?
@Oguz - Are you familiar at all with Don't Repeat Yourself, Single Responsibility Principle or encapsulation as they relate to Object-Oriented Programming?
Nov
18
accepted Architecture of very complex php applications ?
Nov
18
answered Architecture of very complex php applications ?
Nov
18
answered Does form processing code need to be abstracted? (Zend_Form)
Nov
18
answered What is the best type to use for a column in MySQL containing the body of text output by a CMS?
Nov
17
comment Fallback route with Zend Framwork
Could you maybe post two sample routes? One for each condition so we could see what kind of routing parameters might work?
Nov
17
comment Why does CakePHP use different plural/singular naming conventions?
It could also be because CakePHP was designed by people who use PHP which is inconsistent by definition.
Nov
17
comment How to use sha256 in php5.3.0
@garcon1986 - My first guess is that the two hash values are different. You only posted one. So either the problem lies in the hash value going into the database, once it gets stored, or with the hash value that you're generating on login.
Nov
17
comment How to use sha256 in php5.3.0
Can you post a sample of the hash as its stored in the database versus what it looks like in the code?
Nov
17
accepted Select from multiple tables matching multiple criteria
Nov
17
answered Select from multiple tables matching multiple criteria
Nov
17
comment How to Have Search Engines Index Database-Driven Content?
@Mike B - Obviously the OP is not aware of how to go from content in a database to content that can be indexed by Google. It is this information that the OP needs from the community.
Nov
17
comment JavaScript innerchild?
Can you tell us what javascript framework you are using?
Nov
17
answered How do I set environment variables in WAMP
Nov
17
answered How to Have Search Engines Index Database-Driven Content?
Nov
17
revised How to Have Search Engines Index Database-Driven Content?
clarified title
Nov
17
accepted Good PHP mock framework
Nov
16
comment Good PHP mock framework
I'm fairly certain that this was written from scratch. It may employ ideas PHPMock, but I'm pretty certain that the similarities end there.
Nov
16
answered Good PHP mock framework
Nov
16
comment Dynamically populating HTML DropDown controls using AJAX and PHP.
Are you seriously exposing a database query to the browser? I smell SQL injection attacks by the score.
Nov
15
accepted What is the best solution for creating a SOAP Server in PHP?
Nov
15
comment $_GET and $_POST not working
Are you calling this from the command line or from a browser? The first line of code would seem to suggest that you're also accessing it via the command line.
Nov
15
answered What is hash exactly?
Nov
15
revised Loop through form input arrays in php
added 904 characters in body
Nov
15
answered Loop through form input arrays in php
Nov
14
comment What is the best solution for creating a SOAP Server in PHP?
Yes. Zend Framework emphasizes a use-at-will architecture that makes it possible to use only the parts of the framework that you want.