Search results

  1. kbjradmin

    JavaScript Issue - Please Help

    i'm not sure (because javascript is definatly not something i'm proficient at, not even close) but can that idea even work, seeing as the document.login.submit() is inside the head section. i've only ever seen that used in the body section.
  2. kbjradmin

    C# Console Application

    i thought of doing something like this, but wanted to know if there was a better way. btw, i am still open to another suggestion if there is a better way...
  3. kbjradmin

    What should I learn?

    if you're trying to learn programming in general, i would go with python; its a good first language. after that, go to something that isn't such a high level language, C# or Java, for example. after those, then move on to php, because, as has been said before, php is very useful, but can cause...
  4. kbjradmin

    C# Console Application

    i know that in a c# console application, you can write text to the screen with: Console.WriteLine("text..."); but is there some way to then modify the text i have already writen? i am writing a program that processes information in batches and want to have a running total on the screen of many...
  5. kbjradmin

    PHP Parse Error

    thank you for the help, it works now.
  6. kbjradmin

    PHP Parse Error

    ok, here are the first 22 lines in the script: <?php $sendtoAddress = "yourname@yourdomain.com"; $subject = "Message From Website"; $headerFrom = "messaging@yourdomain.com"; # set to "user defined" to display the address given in the form...
  7. kbjradmin

    PHP Parse Error

    i keep getting this error: Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/kbjr/public_html/tays_sis/contact/process.php on line 22 this is the line in question (line 22): $msg = "Name: $_REQUEST['name']\nEmail...
  8. kbjradmin

    Regarding - Splitting PHP Files into Includes

    @TofuBoy i generally use one config file and use it to set variables for my separate parts, like this: html page <?php include('config.php'); ?> <!DOCTYPE blah...> <head> <?php echo $headCode; ?> </head>config.php <?php $headCode = '<title>This is where your code goes.</title>'; etc... ?>
  9. kbjradmin

    boot windows xp computer in command prompt

    yes, safe mode with command prompt works, thank you. i would give rep, but it turns out that you're the last person i gave rep to, so it won't let me.
  10. kbjradmin

    boot windows xp computer in command prompt

    basically, what i want to know is, can it be done? i know in older windows operating systems (windows 98, for example), there was an option to boot in ms-dos mode. windows operating systems since then (such as XP) use "command prompt", not "ms-dos" (not that i see much of a difference...
  11. kbjradmin

    CSS Wrapper

    nope, didn't work.
  12. kbjradmin

    CSS Wrapper

    I know this is a closed issue, but i didn't want to open a new thread about the same topic. this is my site: http://portfolio.kbjr.x10hosting.com/ as you can see, the wrapper div (the box in the middle) is centered fine, but the rest of the stuff inside it will not center. please help, i...
  13. kbjradmin

    Unix Test Command

    is there any way to make the test command case-insensitive in bash? for example, making [ "abc" = "AbC" ] a true statement. Edit: nevermind, i figured it out.
  14. kbjradmin

    [200 Credits] Automatic Word Linking Like 'Wikipedia'

    i personally would use php, but i think that's mostly because i don't like javascript.
  15. kbjradmin

    PHP Script Trouble

    wow... ok, i can't believe i did that. thank you, i gave rep.
  16. kbjradmin

    PHP Script Trouble

    require uses the same syntax as include, correct? because that just gave me a blank page.
  17. kbjradmin

    PHP Script Trouble

    RESUME.PHP PROBLEM: ok, to test that there was actually something in my $resumeCode variable, i used a var_dump() at the end of resumeconfig.php and when i go to resumeconfig.php in my browser, it works, all of my code shows up. but when i do a var_dump() in resume.php, it doesn't. so i have to...
  18. kbjradmin

    PHP Script Trouble

    i'm also having trouble with a function that's supposed to generate the html for a navagation menu. here is the php function function menuGen($menuUrls, $menuText){ $menuCode = '<div id="smoothmenu1" class="ddsmoothmenu"><ul>'; for ( $i = 1; $i <= count($menuUrls)-1; $i++ ){...
  19. kbjradmin

    Transparent png's?

    i always use pngs, but they can cause problems in ie. so i use a conditional css file and use gifs for ie. but for everything else, png.
  20. kbjradmin

    Webdesign help

    first, your page takes a long time to load, you may want to look into that. but, back to your problem, on a 1280x1024 screen, it looks fine. it also looks fine on a 1024x768. the only time there should be a problem is if someone is using a lower resolutions than 1024x768 (unlikely) such as...
Top