English 中文(简体)
如何设置网络服务器 [关闭]
原标题:How to Have a Web Server [closed]

我试图建立一个移动应用程序,让用户将照片上传到网络服务器上,然后让用户在他们的手机上和网上查看。 我在为Android使用电话卡和开发,我非常理解在电话卡方面应该做什么,但我不知道如何创建一个网络服务器。

是否有网站会为我主办, 我需要做什么编码? 我知道相当多的PHP, 但我只是不知道从哪里开始。我想从小开始,比如说每天上传50次。

问题回答

查看 < a href=> "https:// developmenters.google.com/ appengine/" rel="nofollow" >Google s App引擎 , 它是一个很好的开始类似事情的地方。 虽然它需要您在 Java、 Python 或 Go 而不是 php 上编程 。

如果您真的想要在 php 中编码任何网络服务器服务提供商应该足够

You need: 1) a php web server with either root access or at least FTP access 2) backend php code to save uploaded files 3) Android client code to upload files

此链接在此 :

http://reecon.wordpress.com/2010/04/25/uploating-files-to-http-server-using-post-android-sdk/"rel=“nofollow">http://reecon.wordpress.com/2010/04/25/uploating-files-to-http-server-using-using-poster-android-sdk/

3)和2)的答案,祝好运!





相关问题
Brute-force/DoS prevention in PHP [closed]

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 ...

please can anyone check this while loop and if condition

<?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 = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

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 ...

Text as watermarking in PHP

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?

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 ...

热门标签