search
HomeBackend DevelopmentPHP Tutorialphp网站收费有关问题

php网站收费问题
各位高手指点一下,公司要做一个企业网站,外包,明天对方过来洽谈合作事宜,该如何洽谈呢?即衡定价格、网站功能、网站设计什么的。详细一点,小人给跪下了~

------解决方案--------------------
...
企业网站 要不是内定的话,也没有特别的功能完全可以在网上找人做嘛.
先别签合同嘛,问好开价,杀一杀,差不多了把需求放网上招标...
------解决方案--------------------
网站功能 是你你的需求,铁打的不可让步
网站设计 感观问题,没有一定之轨。总是要看的过去吧
衡(核)定价格 仅宣传产品10~15万,附加其他,每项5~10万
对方开价低于10万,就没有商谈的必要了

无论是人家请你做,还是你请人家做,底线是必须存在的
------解决方案--------------------
按页面计算,按数据库计算,按FLASH计算。。。
------解决方案--------------------

探讨

网站功能 是你你的需求,铁打的不可让步
网站设计 感观问题,没有一定之轨。总是要看的过去吧
衡(核)定价格 仅宣传产品10~15万,附加其他,每项5~10万
对方开价低于10万,就没有商谈的必要了

无论是人家请你做,还是你请人家做,底线是必须存在的

------解决方案--------------------
八戒,你又调皮 了。
------解决方案--------------------
探讨

引用:

网站功能 是你你的需求,铁打的不可让步
网站设计 感观问题,没有一定之轨。总是要看的过去吧
衡(核)定价格 仅宣传产品10~15万,附加其他,每项5~10万
对方开价低于10万,就没有商谈的必要了

无论是人家请你做,还是你请人家做,底线是必须存在的
一个企业网站10w。老大去猪八戒,看看行情吧!

------解决方案--------------------
探讨

网站功能 是你你的需求,铁打的不可让步
网站设计 感观问题,没有一定之轨。总是要看的过去吧
衡(核)定价格 仅宣传产品10~15万,附加其他,每项5~10万
对方开价低于10万,就没有商谈的必要了

无论是人家请你做,还是你请人家做,底线是必须存在的

------解决方案--------------------
这个需要从公司制作网站作用出发。
一般企业做网站,侧重点不同,那么对网站的要求就不同。
我们做网站有很多年(www.fytpjy.cn)我们的网站,针对您的这个问题我们跟您如下几点意见,希望对您有所帮助:
这个本人认为你需要首先了解领导的对与网站的要求如何?领导的要求明确那么这个问题就不难解决了。
如果领导对与网站的要求不是很明确,那么就需要你对与网站功能以及对网站对公司有哪些帮助出发,向自己的领导提供可行性意见。
------解决方案--------------------
企业站功能不会很复杂。
主要是设计上要花功夫。

有水准的,以万为单位也不稀奇了。
------解决方案--------------------
你是专职接单,还是偶尔做做。 如果偶尔做做,又没一个专门帮助你去沟通需求,确定功能,负责合同的人,人劝你还是算了。 多练练基本功,找份好工作,来得更现实~
Statement
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
What is the difference between unset() and session_destroy()?What is the difference between unset() and session_destroy()?May 04, 2025 am 12:19 AM

Thedifferencebetweenunset()andsession_destroy()isthatunset()clearsspecificsessionvariableswhilekeepingthesessionactive,whereassession_destroy()terminatestheentiresession.1)Useunset()toremovespecificsessionvariableswithoutaffectingthesession'soveralls

What is sticky sessions (session affinity) in the context of load balancing?What is sticky sessions (session affinity) in the context of load balancing?May 04, 2025 am 12:16 AM

Stickysessionsensureuserrequestsareroutedtothesameserverforsessiondataconsistency.1)SessionIdentificationassignsuserstoserversusingcookiesorURLmodifications.2)ConsistentRoutingdirectssubsequentrequeststothesameserver.3)LoadBalancingdistributesnewuser

What are the different session save handlers available in PHP?What are the different session save handlers available in PHP?May 04, 2025 am 12:14 AM

PHPoffersvarioussessionsavehandlers:1)Files:Default,simplebutmaybottleneckonhigh-trafficsites.2)Memcached:High-performance,idealforspeed-criticalapplications.3)Redis:SimilartoMemcached,withaddedpersistence.4)Databases:Offerscontrol,usefulforintegrati

What is a session in PHP, and why are they used?What is a session in PHP, and why are they used?May 04, 2025 am 12:12 AM

Session in PHP is a mechanism for saving user data on the server side to maintain state between multiple requests. Specifically, 1) the session is started by the session_start() function, and data is stored and read through the $_SESSION super global array; 2) the session data is stored in the server's temporary files by default, but can be optimized through database or memory storage; 3) the session can be used to realize user login status tracking and shopping cart management functions; 4) Pay attention to the secure transmission and performance optimization of the session to ensure the security and efficiency of the application.

Explain the lifecycle of a PHP session.Explain the lifecycle of a PHP session.May 04, 2025 am 12:04 AM

PHPsessionsstartwithsession_start(),whichgeneratesauniqueIDandcreatesaserverfile;theypersistacrossrequestsandcanbemanuallyendedwithsession_destroy().1)Sessionsbeginwhensession_start()iscalled,creatingauniqueIDandserverfile.2)Theycontinueasdataisloade

What is the difference between absolute and idle session timeouts?What is the difference between absolute and idle session timeouts?May 03, 2025 am 12:21 AM

Absolute session timeout starts at the time of session creation, while an idle session timeout starts at the time of user's no operation. Absolute session timeout is suitable for scenarios where strict control of the session life cycle is required, such as financial applications; idle session timeout is suitable for applications that want users to keep their session active for a long time, such as social media.

What steps would you take if sessions aren't working on your server?What steps would you take if sessions aren't working on your server?May 03, 2025 am 12:19 AM

The server session failure can be solved through the following steps: 1. Check the server configuration to ensure that the session is set correctly. 2. Verify client cookies, confirm that the browser supports it and send it correctly. 3. Check session storage services, such as Redis, to ensure that they are running normally. 4. Review the application code to ensure the correct session logic. Through these steps, conversation problems can be effectively diagnosed and repaired and user experience can be improved.

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.

See all articles

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 Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)