[Solved] Develop with server-side program languages (web apps) [closed]

It will largely depend on your current knowledge of programming. There are several languages that you will need to know that can cohesively work together to create a web based app. On the client side you will need to know HTML/CSS/Javascript. You will likely need to expand on that with current technologies like AJAX, jQuery, … Read more

[Solved] Web-app using JS alone..?

Route 1 : Server-side JavaScript node.js is server-side JavaScript. It’s still young but it’s great and perfectly usable. And if you’ve got a non-critical project I would recommend using it. Here’s a list of js libraries I use for node. Problems with Route 1 Lack of maturity, Lack of stress testing, Lack of detailed and … Read more

[Solved] How can i play a video in full screen in another activity on clicking a card view [closed]

The question you have asked involves a larger implementation with code. Use ExoPlayer to play videos in android. You can learn it from this CodeLab and also check this for more information. From your question i understand there is a cardView and when you press it, a video show play in another activity. So for … Read more

[Solved] How to fetch data from a website in android app after entering his personal details during registration?

You can write a RESTful web service on your server which takes the arguments like (age,income,etc) and store these arguments to a new variable then use those variable when connecting the government’s website. After that you can use your government’s APIs if there are any, if not: you can write a web scraper for that … Read more

[Solved] How to Deploy a mobile web app ( html5+jQuery Mobile) on My Own PC in a Local Area Network

I’ve searched some tutorials online these days and found something useful for web-dev beginners like me. Some web application frameworks are helpful, in which spring-boot seems to be a simple one for beginners like me to use. The following tutorial, https://dzone.com/articles/java-8-springboot-angularjs-bootstrap-springdata-j provides a quite clear spring-boot web-app structure, with Java-implemented backend and ccs+js+html front-end. I … Read more

[Solved] Setting a PHP cookie value to be intentionally vulnerable

i looked at it again, try this: $cookie_name=”Authenticated”; // this checks if the value has been set already if (!isset($_GET[‘cookie_value’])) { // if no value is set, it defaults to 0 and displays the error message $cookie_value=0; $error = “You are not authorized to view this page!”; echo $error; } // Now here if the … Read more