Search results

  1. R

    PHP on LocalHost

    Not sure... Hey, how can I make a GuestBook and Poll on my sites?? Can it be done using PHP, or would JavaScript be better?
  2. R

    PHP on LocalHost

    I think that book is just a pile of trash anyway, they had that dang Calculator in there using if this do that, do this do that, when I could have just done select[calc] case = 'add' so on so forth I think you actually fixed it for me, not sure..
  3. R

    For Linux Users Only

    Nothing wrong with that, LOL
  4. R

    For Linux Users Only

    Thanks for the help =)
  5. R

    For Linux Users Only

    Eww, no thanks, definitely not Terminals, GUI sorry, I should have been more specific.. But, I did happen to look at FLTK, it looks pretty cool
  6. R

    PHP on LocalHost

    I feel like such an idiot, this is all probably common sense and I am missing a viable piece of information somewhere, I really want this stuff to work so I can debug before uploading, that way it doesn't ruin the x10hosting, or my own account cpanel settings.
  7. R

    PHP on LocalHost

    I can't seem to get PHP working, apache is running properly, MySQL is running properly, I followed my books instructions, I placed the php-dist.ini file in C:\Windows just as it said, I couldn't find the other file, maybe that book is too hold and outdated, it does say, "PHP5" can anybody help...
  8. R

    For Linux Users Only

    Does any Linux Users here know of a C++ Linux Window Skeleton?? I know that in Windows, it's #include <windows.h> LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); static char gszClassName[] = "darkblue"; static HINSTANCE ghInstance = NULL; int WINAPI WinMain(HINSTANCE hInstance...
  9. R

    Php

    Ooooh, I am learning WPF in Visual C# on Microsoft Windows, I use QT4 in Linux, so, I do know more C++ and C# than I do PHP, or JavaScript, but I know more HTML, and CSS than anything.
  10. R

    Php

    Thanks so much, anybody else couldn't explain it that easily =)
  11. R

    HTML Frames

    Thanks, I got them working anyway, I read w3.org online and they said <frameset></frameset> isn't being used any longer, now they use JavaScript and CSS, I am not sure how they use CSS to do Frames, I looked in my CSS How-To book and there was nothing in there for frames.. After I clicked the...
  12. R

    Php

    Thanks, those codes looked right didn't they?
  13. R

    Php

    if (($_POST[val1] == "") || ($_POST[val2] == "") || ($_POST[calc] == "")) { die("Unknown file name"); } if ($_POST[calc] == "add") { $result = $_POST[val1] + $_POST[val2]; } else if ($_POST[calc] == "subtract") { $result = $_POST[val1] - $_POST[val2]; } else if...
  14. R

    HTML Frames

    I'll never be able to pass that Online HTML Exam if I can't conquer this, frames is all I am lacking on, and I think I'll get it, what about JavaScript, are Frames harder in JavaScript, or about the same?
  15. R

    HTML Frames

    Oooooooh, no need for: <frameset cols="25%, 75*"> </frameset> then? There's a problem here, it's opening the content in the leftside.html instead of index.html I put <Iframe src="leftside.html"></iframe> in the index.html file, does that go in the body section, or above <body></body>...
  16. R

    HTML Frames

    Alright, so have all of my Links and stuff on index.html and rename leftside.html to something else? I wonder why I can't seem to grasp this stuff, LOL.. Then, I can display the stuff on index.html on the, lets say, index2.html file?
  17. R

    HTML Frames

    I was wondering if I only need two files for frames? I do need more than one html page, it's going to be an about page, it's going to have an about page for me and an about page for a friend, I only need and index.html, and a mainsrc.html file for frames correct?? I looked online for some...
  18. R

    Php

    So, I don't need the if (($_POST[val1] == " ") || ($_POST[val2] == " ") || ($_POST[calc] == " ")) { Some other codes; } ????
  19. R

    Php

    I tried that man, it didn't work, all it did was display Known File Type
  20. R

    Apache and PHP 5.2.2

    Wow, installing these two programs and getting them to run is very complicated isn't it?? I can't seem to get them to work together
Top