a 客户(旅馆)与我接洽,询问是否可以为他的餐馆制定账单和账户制度。 我作出了积极的反应。 现在,唯一的方案拟订语言是PHP和MySQL,当然是(超文本、CSS & JS)。
您认为,应该继续使用PHP并安装在其系统中。 或者只是要求他找到另一家供应商来建 app?
感谢
a 客户(旅馆)与我接洽,询问是否可以为他的餐馆制定账单和账户制度。 我作出了积极的反应。 现在,唯一的方案拟订语言是PHP和MySQL,当然是(超文本、CSS & JS)。
您认为,应该继续使用PHP并安装在其系统中。 或者只是要求他找到另一家供应商来建 app?
感谢
PHP is definitely in a position you can use to build all sorts of applications. You can build blogs, ecommerce sites, forums, ERPs, financial applications and more.
如果你在项目组合中发现 yourself,你可以无限期地走下去。
相对于软件/软件,你将不得不培训用户如何配置服务器,等等,以便在除你可能希望提供的手册/帮助外,操作应用软件。
密码可见度是其他用户/用户可以发现的另一个问题。 如果有人担心,你可以申请许可。
是的。 赞成。 几乎所有类型的应用都有可能使用购买力平价。 购买力平价的良好方面是服务器,因此,你的代码被封起来,从而尽量减少(但并非全部) ha。
然而,如果你已经具备了现有的软件/方案,就会更好地优化软件或提高其效率。 感谢。
I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...
<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...
I found this script online that creates a thumbnail out of a image but the thumbnail image is created with poor quality how can I improve the quality of the image. And is there a better way to create ...
如何确认来自正确来源的数字。
Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...
I wonder there is a way to post a message to a facebook business page with cURL? thanks
I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...
How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...