English 中文(简体)
这是一个简单的网页应用程序的语言。
原标题:language for a simple web app [closed]

Closed. This question is opinion-based. It is not currently accepting answers.


想改进这个问题吗?请更新问题,以便可以通过事实和引用进行回答,编辑此帖

Closed 7 years ago.

我想要写一个简单的网站应用程序,可以连接数据库并显示简单的文本和图片。我有一些编程经验 - 主要是C语言。而且我只有很短的时间来学习相关的语言和技术。哪种语言比较好,还有什么是好的起点?

最佳回答

如果你知道 C,PHP 就应该自然地掌握。

它也是:

  • Widely deployed
  • Easy to get started
  • Built exclusively for the web
  • Plenty of resources for learning
问题回答

看一下Ruby on Rails,特别是他们主页上的演示视频,“使用Rails 2在15分钟内创建一个博客”。

语法与C不同,但另一方面,对于简单的Web应用程序基本上没有学习曲线。

你找不到比PHP更简单的了。它有C语法。它几乎随处可用。

作为 PHP 的替代选择,请尝试使用 PythonDjango。 它非常容易学习,比 PHP 更好用,而且拥有一个良好的社区。 唯一的问题是它没有 PHP 那么广泛地部署。 但是,如果您控制服务器,则不应该成问题。

PHP syntax is similar to C and it won t take much time to build a simple app. PHP is one of the easiest language i ve known :).

每次你谈论网页应用程序时,你都会涉及到javascript的相关内容,所以我建议你尝试一下node js,因为它快速而且有很多工具可以通过几个命令集成到你的应用程序中。





相关问题
what is wrong with this mysql code

$db_user="root"; $db_host="localhost"; $db_password="root"; $db_name = "fayer"; $conn = mysqli_connect($db_host,$db_user,$db_password,$db_name) or die ("couldn t connect to server"); // perform query ...

Users asking for denormalized database

I am in the early stages of developing a database-driven system and the largest part of the system revolves around an inheritance type of relationship. There is a parent entity with about 10 columns ...

Easiest way to deal with sample data in Java web apps?

I m writing a Java web app in my free time to learn more about development. I m using the Stripes framework and eventually intend to use hibernate and MySQL For the moment, whilst creating the pages ...

join across databases with nhibernate

I am trying to join two tables that reside in two different databases. Every time, I try to join I get the following error: An association from the table xxx refers to an unmapped class. If the ...

How can I know if such value exists in database? (ADO.NET)

For example, I have a table, and there is a column named Tags . I want to know if value programming exists in this column. How can I do this in ADO.NET? I did this: OleDbCommand cmd = new ...

Convert date to string upon saving a doctrine record

I m trying to migrate one of my PHP projects to Doctrine. I ve never used it before so there are a few things I don t understand. In my current code, I have a class similar to this: class ...

热门标签