我试图建立一个移动应用程序,让用户将照片上传到网络服务器上,然后让用户在他们的手机上和网上查看。 我在为Android使用电话卡和开发,我非常理解在电话卡方面应该做什么,但我不知道如何创建一个网络服务器。
是否有网站会为我主办, 我需要做什么编码? 我知道相当多的PHP, 但我只是不知道从哪里开始。我想从小开始,比如说每天上传50次。
我试图建立一个移动应用程序,让用户将照片上传到网络服务器上,然后让用户在他们的手机上和网上查看。 我在为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
此链接在此 :
3)和2)的答案,祝好运!
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 ...