Home Backend Development PHP Tutorial 请问从事php开发工作的高手们

请问从事php开发工作的高手们

Jun 13, 2016 pm 01:00 PM
css html mysql nbsp php

请教从事php开发工作的高手们?

本帖最后由 king_2007 于 2012-10-23 18:53:27 编辑 请高手,在从事php开发工作中,一般公司要求开发前台和后台程序,前台开发你们一般怎么做开发的?是直接用开发工具编写代码还是用模版开发前台?后台开发你们是否用到javascript和html5 css??我现在开发后台程序一般就用php+mysql开发,不知道能否胜任现在的后台开发?请教高手
------解决方案--------------------
应该能胜任吧~

------解决方案--------------------
javascript和html5 css都是前台的东西啊,只有php+mysql才是后台的,不过现在中小型网站,最好用PHP+SQLITE,我看到个飞飞网站建设管理系统不错,新出来的,这个系统封装了所有后台操作,只要按它定义的写法写出前台就行,比较好用,你可以试试
------解决方案--------------------
后台PHP+MySQL可以,如果没人专门管服务器,你还要懂得配apache

前台都是美工根据预览图写html。js,css代码,后台只要负责套数据就行了
------解决方案--------------------
现在的公司都是需求全能选手,你一个人全都干了才好,老板省钱了,所以啊,会的越多工作越好找,^_^
------解决方案--------------------
引用:
引用:

后台PHP+MySQL可以,如果没人专门管服务器,你还要懂得配apache

前台都是美工根据预览图写html。js,css代码,后台只要负责套数据就行了

美工也编写html js css代码吗?
请问下,现在的公司都招聘php工程师,是不是都是招聘开发后台的?

现在基本招收都有分开招吧,后台的叫什么网站开发工程师,软件工程师什么的,
前台的叫前端设计师,WEB UI设计师什么的
------解决方案--------------------
正常来说。应该会php+mysql+js
有些功能还是需要用到js的
html和css还有js的界面效果属于前端了,美工组的事。
不过现在很多小公司要求全能型人才,恨不得你连界面设计,PS都会,大公司一般分工会明确一些……
------解决方案--------------------
不知你所谓的前台和后台是怎么分的。。
可以说普通用户访问的是前台,管理员访问的是后台
也可以说所有人可见的是前台,服务器端不对外可见的是后台
一般后一种说法比较准确
按后一种说法来分的话
前台:html javascript css 美术 设计
后台:这才是硬货,太多没法列举

如果一个网站开发人员告诉我他不会html与js,我怎么想,大家心里应该知道
楼主的意思我可能有所误会,但这年头讲究的是综合实力~
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1666
14
PHP Tutorial
1273
29
C# Tutorial
1253
24
Steps to add and delete fields to MySQL tables Steps to add and delete fields to MySQL tables Apr 29, 2025 pm 04:15 PM

In MySQL, add fields using ALTERTABLEtable_nameADDCOLUMNnew_columnVARCHAR(255)AFTERexisting_column, delete fields using ALTERTABLEtable_nameDROPCOLUMNcolumn_to_drop. When adding fields, you need to specify a location to optimize query performance and data structure; before deleting fields, you need to confirm that the operation is irreversible; modifying table structure using online DDL, backup data, test environment, and low-load time periods is performance optimization and best practice.

What is the significance of the session_start() function? What is the significance of the session_start() function? May 03, 2025 am 12:18 AM

session_start()iscrucialinPHPformanagingusersessions.1)Itinitiatesanewsessionifnoneexists,2)resumesanexistingsession,and3)setsasessioncookieforcontinuityacrossrequests,enablingapplicationslikeuserauthenticationandpersonalizedcontent.

How to uninstall MySQL and clean residual files How to uninstall MySQL and clean residual files Apr 29, 2025 pm 04:03 PM

To safely and thoroughly uninstall MySQL and clean all residual files, follow the following steps: 1. Stop MySQL service; 2. Uninstall MySQL packages; 3. Clean configuration files and data directories; 4. Verify that the uninstallation is thorough.

How does deepseek official website achieve the effect of penetrating mouse scroll event? How does deepseek official website achieve the effect of penetrating mouse scroll event? Apr 30, 2025 pm 03:21 PM

How to achieve the effect of mouse scrolling event penetration? When we browse the web, we often encounter some special interaction designs. For example, on deepseek official website, �...

An efficient way to batch insert data in MySQL An efficient way to batch insert data in MySQL Apr 29, 2025 pm 04:18 PM

Efficient methods for batch inserting data in MySQL include: 1. Using INSERTINTO...VALUES syntax, 2. Using LOADDATAINFILE command, 3. Using transaction processing, 4. Adjust batch size, 5. Disable indexing, 6. Using INSERTIGNORE or INSERT...ONDUPLICATEKEYUPDATE, these methods can significantly improve database operation efficiency.

How to use MySQL functions for data processing and calculation How to use MySQL functions for data processing and calculation Apr 29, 2025 pm 04:21 PM

MySQL functions can be used for data processing and calculation. 1. Basic usage includes string processing, date calculation and mathematical operations. 2. Advanced usage involves combining multiple functions to implement complex operations. 3. Performance optimization requires avoiding the use of functions in the WHERE clause and using GROUPBY and temporary tables.

Detailed explanation of the installation steps of MySQL on macOS system Detailed explanation of the installation steps of MySQL on macOS system Apr 29, 2025 pm 03:36 PM

Installing MySQL on macOS can be achieved through the following steps: 1. Install Homebrew, using the command /bin/bash-c"$(curl-fsSLhttps://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)". 2. Update Homebrew and use brewupdate. 3. Install MySQL and use brewinstallmysql. 4. Start MySQL service and use brewservicesstartmysql. After installation, you can use mysql-u

How to configure the character set and collation rules of MySQL How to configure the character set and collation rules of MySQL Apr 29, 2025 pm 04:06 PM

Methods for configuring character sets and collations in MySQL include: 1. Setting the character sets and collations at the server level: SETNAMES'utf8'; SETCHARACTERSETutf8; SETCOLLATION_CONNECTION='utf8_general_ci'; 2. Create a database that uses specific character sets and collations: CREATEDATABASEexample_dbCHARACTERSETutf8COLLATEutf8_general_ci; 3. Specify character sets and collations when creating a table: CREATETABLEexample_table(idINT

See all articles