[Solved] crawl and copy another sites content

I am not sure about your question, but I think you want to do scrapping. Using PHP, you can use cURL for instance. That will load an URL and, with DOM you will be able to parse HTML and find content, links etc you want. solved crawl and copy another sites content

[Solved] Create a GET request to Coinbase with JavaScript

Coinbase has a maintained API you can use to fetch the data you need. They support various solutions (REST, Websocket, etc.), depending on your requirements. Resources for getting started with general web development is an entirely different beast. I would suggest Angular’s Heroes Tutorial, and from there read up on AJAX or Websockets (for the … Read more

[Solved] Need help replicating a little bit of JavaScript

I’m not sure I entirely understand the question, I think you could just do this: <SCRIPT> function passWord() { var testV = 1; var pass1 = prompt(‘Enter Store Code Here’,’ ‘); while (testV < 3) { if (!pass1) history.go(-1); if (pass1.toUpperCase() == “CUSTOMPASSWORD1234”) { alert(‘You are being redirected!’); window.open(‘CUSTOMPASSWORD1234.html’); break; } else if (pass1.toUpperCase() == … Read more

[Solved] How to convert upper case to lowercase stored in a variable inside switch statment [duplicate]

The expression “cake” || “Cake” evaluates to true, because both those strings are truthy. So when user’s input is compared with that value, for example “cake” == true, it evaluates to true because the user’s input (“cake”) is also truthy. To ignore the case of user’s input, you can simply convert it to lowercase (by … Read more