What is the web development(PHP - MySQL) process after designers deliver the design/look of a web site to the developers , to submiting the finished project to the project manager? Developing lets say being done by more than one guy, and it involves testing , debugging , database design etc. what are the steps a company follows or if i want to be a freelancer and what are the tools and knowledge required to do it efficiently?( free onces). I know HTML, CSS, Javascript(JQuery), php, frameworks (Laravel 4, CI). I hope i get answers from the experienced web developers which are going to help me join a company as a web developer or if i want to be a freelance web developer in future.
What are the software tools required in each step of the web development from getting the design to submitting to the client?
73 views Asked by user1906399 At
1
There are 1 answers
Related Questions in PHP
- How to initialize FabricSDK correctly?
- Fabric-sdk-go client.Query returns error: failed to create transactor: Channel_Cfg_Cache - cache is closed
- Not able to query the BYFN via fabric-sdk-go due to the error " no endorsement combination..."
- asset-transfer-basic blows up with "SendTransaction failed: orderers is nil"
- fabric-sdk-go.beta3 execute LifecycleApproveCC failed
- When I used msp in fabric-sdk-go to register users with CA, an error occurred
- could not get chConfig cache reference: QueryBlockConfig failed: queryChaincode failed:
- Arguments as JSON kind of in sendTransactionProposal(req ChaincodeInvokeRequest) in Hyperledger Fabric
- TRANSIENT_FAILURE occurs when a transaction is sent using Gateway that is configured using `WithSDK` in fabric-go-sdk
- Hyperledger Go SDK v1.0.0-alpha3 not compatible with fabric v1.1.0
Related Questions in JQUERY
- How to initialize FabricSDK correctly?
- Fabric-sdk-go client.Query returns error: failed to create transactor: Channel_Cfg_Cache - cache is closed
- Not able to query the BYFN via fabric-sdk-go due to the error " no endorsement combination..."
- asset-transfer-basic blows up with "SendTransaction failed: orderers is nil"
- fabric-sdk-go.beta3 execute LifecycleApproveCC failed
- When I used msp in fabric-sdk-go to register users with CA, an error occurred
- could not get chConfig cache reference: QueryBlockConfig failed: queryChaincode failed:
- Arguments as JSON kind of in sendTransactionProposal(req ChaincodeInvokeRequest) in Hyperledger Fabric
- TRANSIENT_FAILURE occurs when a transaction is sent using Gateway that is configured using `WithSDK` in fabric-go-sdk
- Hyperledger Go SDK v1.0.0-alpha3 not compatible with fabric v1.1.0
Related Questions in MYSQL
- How to initialize FabricSDK correctly?
- Fabric-sdk-go client.Query returns error: failed to create transactor: Channel_Cfg_Cache - cache is closed
- Not able to query the BYFN via fabric-sdk-go due to the error " no endorsement combination..."
- asset-transfer-basic blows up with "SendTransaction failed: orderers is nil"
- fabric-sdk-go.beta3 execute LifecycleApproveCC failed
- When I used msp in fabric-sdk-go to register users with CA, an error occurred
- could not get chConfig cache reference: QueryBlockConfig failed: queryChaincode failed:
- Arguments as JSON kind of in sendTransactionProposal(req ChaincodeInvokeRequest) in Hyperledger Fabric
- TRANSIENT_FAILURE occurs when a transaction is sent using Gateway that is configured using `WithSDK` in fabric-go-sdk
- Hyperledger Go SDK v1.0.0-alpha3 not compatible with fabric v1.1.0
Related Questions in WEB-DEPLOYMENT
- How to initialize FabricSDK correctly?
- Fabric-sdk-go client.Query returns error: failed to create transactor: Channel_Cfg_Cache - cache is closed
- Not able to query the BYFN via fabric-sdk-go due to the error " no endorsement combination..."
- asset-transfer-basic blows up with "SendTransaction failed: orderers is nil"
- fabric-sdk-go.beta3 execute LifecycleApproveCC failed
- When I used msp in fabric-sdk-go to register users with CA, an error occurred
- could not get chConfig cache reference: QueryBlockConfig failed: queryChaincode failed:
- Arguments as JSON kind of in sendTransactionProposal(req ChaincodeInvokeRequest) in Hyperledger Fabric
- TRANSIENT_FAILURE occurs when a transaction is sent using Gateway that is configured using `WithSDK` in fabric-go-sdk
- Hyperledger Go SDK v1.0.0-alpha3 not compatible with fabric v1.1.0
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
This question is likely to be closed as the answer will change over time, so is not a good fit here. The "generic" answer is...
Source Control
If working as part of a team, source control is an absolute must (be it Mercurial, Subversion, Team Foundation Server or something else entirely).
This allows you to share work between team members and also covers the "What if Bob gets hit by a bus" scenario. At least Bob will know his code won't be lost, so it's not all bad...
An IDE
I consider an IDE to be crucial to productivity (Visual Studio/Eclipse/etc). I do know some devs who insist a text editor is all you need but I personally find I can get things done faster with an IDE.
A Build/Test system
You probably won't need to set this up yourself (at least not at first) but you'll need to write unit tests for your code. Quite often tis system is tied into source control (so a checkin will cause all unit tests to be run to make sure you haven't broken anything).
Of course, how exactly tests are defined will depend on the language/framework/project.
Maintainable code
Not really a tool but something I've found a lot of solo developers don't consider... When working with others, making sure your code can be understood by someone else can be more important than having it work efficiently. That means things like useful variable names (I once saw code that started
$Zeus = $_INPUT[...]), making sure your code is DRY, not thinking of complex SQL queries as one long string, etc, etc. I could go on forever.