我在就购买力平价局势提出了一些建议之后。
目前,我拥有一个有两个用户名和密码领域的超文本页面。 当一个提交国受到压力时,通过《行动》装载了一种PHP文档,如果用户名称和密码正确,就开始游戏。 该游戏与用户的检查一样,也属于PHP。 用户可以回答许多问题,并根据结果分得分。 在用户完成之后,他们可以发布一个记录台,以节省目前的记分和水平。
有人要求我使用模式/观点/控制器。 曼 谷 我对我应当经历的将我的一份PHP游戏档案更改为这种设置的过程,请提出一些建议?
我在就购买力平价局势提出了一些建议之后。
目前,我拥有一个有两个用户名和密码领域的超文本页面。 当一个提交国受到压力时,通过《行动》装载了一种PHP文档,如果用户名称和密码正确,就开始游戏。 该游戏与用户的检查一样,也属于PHP。 用户可以回答许多问题,并根据结果分得分。 在用户完成之后,他们可以发布一个记录台,以节省目前的记分和水平。
有人要求我使用模式/观点/控制器。 曼 谷 我对我应当经历的将我的一份PHP游戏档案更改为这种设置的过程,请提出一些建议?
我不考虑游戏本身的运作,把认证作为例子。
<><><><><>><>>>><>>>>>>
您的个案是接收提交表格的几页。 它将验证任何投入,并决定需要何种服务才能做出反应。 然后,它将通过这一答复(其中仅应包括将在网页上显示的数据,而不包括格式或其他信息)。
<><><>>>>
本案的模式是提供认证的服务。 这应当是一套职能,例如:
//returns 1 if successful, 0 otherwise
function authenticate(&$username, &$password) { ... }
通常,这些都集中在可以从任何地方叫到的班级。 这是你的模式,因为它与问题领域的数据相互作用。
在此情况下,一旦控制人员从认证服务处收到答复,该意见将予以整理,并将其贴上html和cs。 在此情况下,这很可能意味着显示用户的标识和为游戏收集信息。 或者,如果该日志失败,那么该观点就应当表明失败;错误信息等。 注是两种不同的观点:认证的成功和失败。
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 ...