[Solved] Minecraft Login system

[ad_1] The code you’ve made is incomplete as @user681574 stated, so unfortunately your question will be answered in a vague way. It seems like you have to make objects appear when the player has successfully logged in as it is the easiest way possible. Another way is to make the players not able to register … Read more

[Solved] Age Calculator in Javascript [closed]

[ad_1] try this.. function run() { var birth = new Date(document.getElementById(“Ultra”).value); var curr = new Date(); var diff = curr.getTime() – birth.getTime(); document.getElementById(“srt”).value = Math.floor(diff / (1000 * 60 * 60 * 24 * 365.25)); } [ad_2] solved Age Calculator in Javascript [closed]

[Solved] Downloading files with curl in PHP [closed]

[ad_1] Im not sure what is your problem. If you just don’t know how to use CURL – here you have example: $oCurl = curl_init(); // initialize curl object $url=”http://domain.com/page”; curl_setopt($oCurl, CURLOPT_URL, $url); // set URL $siteContent = curl_exec($oCurl); // you will get HTML or other file contents here 0 [ad_2] solved Downloading files with … Read more

[Solved] jquery ajax fileupload [closed]

[ad_1] It is inevitable that you will have to use a “plugin” to your definition, but… Here’s the good news: There’s a really good, easy to use, simple to code jQuery-File-Upload by blueimp that you can Download Here. You wanted it simple: Since you are looking for it to be a simple, basic jQuery… You … Read more