Jump to content

gevo12321

Members
  • Posts

    126
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

gevo12321's Achievements

Member

Member (2/5)

0

Reputation

  1. why dont you keep track of when they log out/log in and add it all in when they log in
  2. Just wondering what the accepted naming convention for php is. For example, in Java you have multyWordVariables, Classes, CONSTANTS
  3. Its an html file, I just need the data in the file which is organized in a table.
  4. Hi, So I need to download a file from the internet. The file changes every 10 seconds, and I would like to download the file every time it changes (every 10 seconds). Fortunately the file is always at the same address. The problem is, in order to download, you have to be logged into the site which uses asp not php . I was wondering what your recommendations would be to getting the files. Should I use some kind of macro program? if so, which would you recommend? or is there a way I can write a program to do it? what would be your solution to the problem? Thanks!
  5. I want to write a program to save the data into an excel spreadsheet. I want to be able to run the program from any computer with an internet connection not necessarily a server. I don't think PHP will work because it is server-side and I don't have access to the server but the server posts data on a page in HTML every 10 seconds and I'd like to save that data. Hope that describes it. Thanks
  6. Hi, I was wondering if there is any way to save data from HTML files. The page refreshes every 10 seconds with new data and I was wondering if it would be possible to automate saving the data on the page every 10 seconds and put it into an excel spreadsheet. I know that this is probably the wrong forum, but I guess its worth a try. thanks!
  7. you know how in if statements you have to use == because you r comparing do you also use !== or do u use just != in if statements
  8. I always get confused when to use = and when to use == if i have tow variables $x and $y and they are both text variables what do i need to use?
  9. is it possible to put 2 arguments in an if statement or would i have to put an if statement within another if statement. for example could i do the following? if so what would be the code? if the carpet is blue and the chair is red then bla or do i have to if the carpet is blue then if the chair is red then bla
  10. so every page that uses sessions has to have session_start(); at the beginning of the code? or just the first page that uses sessions?
  11. I was wondering if you have the following: the chair is blue the floor is red if the chair is blue then bla else if the floor is red then bla else bla so since the first is true, does it automatically skip the rest of the things or does it still check if they r also true?
  12. so i was wondering if the if statement and the else if statement can be about different variables. for example can i say if the room is green then something, else if the chair is green, then something, else something else. so for the if and else if, do they both have to be the room, or both have to be the chair or can they be different variables?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.